CenGen - Генератор ценников  1.1
dialog.h
00001 #ifndef DIALOG_H
00002 #define DIALOG_H
00003 
00004 #include <QDialog>
00005 #include <QGridLayout>
00006 #include <QLabel>
00007 #include <QTableWidget>
00008 #include "mainTableWidget.h"
00009 
00010 
00011 QT_BEGIN_NAMESPACE
00012 class QGridLayout;
00013 class QTableWidget;
00014 QT_END_NAMESPACE
00015 
00016 class ListFoundedItemsDialog : public QDialog {
00017     Q_OBJECT
00018 private:
00019     QGridLayout* myLayout;
00020     MainTableWidget* myTable;
00021     QPushButton* buttonOK;
00022     QPushButton* buttonCancel;
00023     QPushButton* buttonSelectAll;
00024     QLabel* label;
00025 
00026 public:
00027     ListFoundedItemsDialog (QWidget* pwgt = 0);
00028 
00029     void setMessage(MainTableWidget **table);
00030     void setMessage(QString error);
00031 
00032 private slots:
00033     //void addTovarToList(int row, int column);
00034     //void selectAllItems();
00035 
00036 };
00037 
00038 #endif // DIALOG_H
 Указатель Классы Функции