~ubuntu-branches/debian/sid/unixodbc/sid

« back to all changes in this revision

Viewing changes to DataManagerII/classBrowseFrame.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2004-10-15 03:07:52 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20041015030752-dzw4vhxlgycz3woj
Tags: 2.2.4-11
Brown paper bag me: conflicts do not write themselves just because
you add a line to the changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************
 
2
 *
 
3
 *
 
4
 **************************************************
 
5
 * This code was created by Peter Harvey @ CodeByDesign.
 
6
 * Released under GPL 30.NOV.00
 
7
 *
 
8
 * Contributions from...
 
9
 * -----------------------------------------------
 
10
 * Peter Harvey         - pharvey@codebydesign.com
 
11
 **************************************************/
 
12
#ifndef classBrowseFrame_included
 
13
#define classBrowseFrame_included
 
14
 
 
15
#include "classBrowse.h"
 
16
#include <qwidget.h>
 
17
#include <qmainwindow.h>
 
18
#include <qpopupmenu.h>
 
19
#include <qstring.h>
 
20
#include <sqlext.h>
 
21
 
 
22
class classBrowseFrame : public QMainWindow
 
23
{
 
24
    Q_OBJECT
 
25
 
 
26
public:
 
27
 
 
28
    classBrowseFrame( SQLHDBC hDbc, const QString &qsTable, const QString &qsLibrary, QWidget* parent = 0, const char* name = 0 );
 
29
    ~classBrowseFrame() {}
 
30
 
 
31
    void resizeEvent( QResizeEvent * );
 
32
 
 
33
public slots:
 
34
    void autoRefresh();
 
35
 
 
36
protected:
 
37
    classBrowse *browse;
 
38
    QPopupMenu  *pResults;
 
39
    int         nAutoRefresh;
 
40
};
 
41
#endif
 
42