Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 4442dd9bdde98a1d9ca2177557e87d7d > files > 368

libqxt-devel-0.6.1-3.fc15.i686.rpm

#ifndef TESTDIALOG_H_INCLUDED
#define TESTDIALOG_H_INCLUDED

#include <QDebug>
#include "ui_country.h"
#include <QxtCountryModel>



class TestDialog : public QDialog
 {
     Q_OBJECT

 public:
     TestDialog(QWidget *parent = 0)
     : QDialog(parent)
     {
       ui.setupUi(this);
       ui.label->setText(QString("Current Locale: %1").arg(QLocale::system().name()));
       ui.tableView->setModel(new QxtCountryModel(this));
     }

 private:
     Ui::Dialog ui;
 };

#endif // TESTDIALOG_H_INCLUDED