From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- doc/html/sql-overview-table4-main-h.html | 96 ++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 doc/html/sql-overview-table4-main-h.html (limited to 'doc/html/sql-overview-table4-main-h.html') diff --git a/doc/html/sql-overview-table4-main-h.html b/doc/html/sql-overview-table4-main-h.html new file mode 100644 index 0000000..26f48f0 --- /dev/null +++ b/doc/html/sql-overview-table4-main-h.html @@ -0,0 +1,96 @@ + + + + + +sql/overview/table4/main.h Example File + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

sql/overview/table4/main.h Example File

+ + +
/****************************************************************************
+** $Id: qt/main.h   3.3.8   edited Jan 11 14:37 $
+**
+** Copyright (C) 1992-2007 Trolltech ASA.  All rights reserved.
+**
+** This file is part of an example program for Qt.  This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include <qapplication.h>
+#include <qcombobox.h>
+#include <qmap.h>
+#include <qpainter.h>
+#include <qsqldatabase.h>
+#include <qsqlcursor.h>
+#include <qsqleditorfactory.h>
+#include <qsqlpropertymap.h>
+#include <qdatatable.h>
+#include "../connection.h"
+
+class StatusPicker : public QComboBox
+{
+    Q_OBJECT
+    Q_PROPERTY( int statusid READ statusId WRITE setStatusId )
+public:
+    StatusPicker( QWidget *parent=0, const char *name=0 );
+    int statusId() const;
+    void setStatusId( int id );
+private:
+    QMap< int, int > index2id;
+};
+
+
+class CustomTable : public QDataTable
+{
+    Q_OBJECT
+public:
+    CustomTable(
+            QSqlCursor *cursor, bool autoPopulate = FALSE,
+            QWidget * parent = 0, const char * name = 0 ) :
+        QDataTable( cursor, autoPopulate, parent, name ) {}
+    void paintField(
+            QPainter * p, const QSqlField* field, const QRect & cr, bool );
+
+};
+
+
+class CustomSqlEditorFactory : public QSqlEditorFactory
+{
+    Q_OBJECT
+public:
+    QWidget *createEditor( QWidget *parent, const QSqlField *field );
+};
+
+


+ +
Copyright © 2007 +TrolltechTrademarks +
Qt 3.3.8
+
+ -- cgit v1.2.1