findtablewidget.h

Go to the documentation of this file.
00001 #ifndef _FINDTABLEWIDGET_H_
00002 #define _FINDTABLEWIDGET_H_
00003 
00004 #include <QWidget>
00005 
00006 class QTableWidget;
00007 class QModelIndex;
00008 
00009 
00010 class findtablewidget : public QWidget
00011 {
00012  Q_OBJECT
00013 
00014 public:
00015  findtablewidget(QWidget *parent=0);
00016  virtual ~findtablewidget(void);
00017 
00018  void clear_all(void);
00019  void add_row(QString title, QString branchname, QString tags, QStringList path, int num_in_recordtable);
00020  void update_columns_width(void);
00021 
00022 private slots:
00023  void select_cell(int row, int column);
00024 
00025 private:
00026  QTableWidget *findtableview;
00027  
00028  void setup_ui(void);
00029  void setup_signals(void);
00030  void assembly(void);
00031  
00032  bool eventFilter( QObject * o, QEvent * e );
00033 
00034 };
00035 
00036 #endif  /* _FINDTABLEWIDGET_H_ */
00037 

Generated on Mon Feb 2 00:25:34 2009 for mytetra by  doxygen 1.5.1