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

« back to all changes in this revision

Viewing changes to DataManagerII/classLogin.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 18.FEB.99
 
7
 *
 
8
 * Contributions from...
 
9
 * -----------------------------------------------
 
10
 * Peter Harvey   - pharvey@codebydesign.com
 
11
 **************************************************/
 
12
#ifndef classLogin_included
 
13
#define classLogin_included
 
14
 
 
15
class ConnectionScoper ;
 
16
#include <qdialog.h>
 
17
#include <qwidget.h>
 
18
#include <qlineedit.h>
 
19
#include <qstring.h>
 
20
#include <sqlext.h>
 
21
 
 
22
class classLogin: public QDialog
 
23
{
 
24
  Q_OBJECT
 
25
 
 
26
public:
 
27
  classLogin( QWidget *pParent, ConnectionScoper &dbc, const QString &dataSource );
 
28
 ~classLogin() {}
 
29
 
 
30
private slots:
 
31
  void pbOk_Clicked();
 
32
  void pbCancel_Clicked();
 
33
 
 
34
private:
 
35
  ConnectionScoper &dbc;
 
36
  QString   qsDataSourceName;
 
37
  QLineEdit *txtUID;
 
38
  QLineEdit *txtPWD;
 
39
};
 
40
#endif
 
41