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 --- examples/gridview/gridview.cpp | 46 ++++++++++++++++++++++++++++++++++++++++++ examples/gridview/gridview.pro | 10 +++++++++ 2 files changed, 56 insertions(+) create mode 100644 examples/gridview/gridview.cpp create mode 100644 examples/gridview/gridview.pro (limited to 'examples/gridview') diff --git a/examples/gridview/gridview.cpp b/examples/gridview/gridview.cpp new file mode 100644 index 0000000..06a6017 --- /dev/null +++ b/examples/gridview/gridview.cpp @@ -0,0 +1,46 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 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 +#include +#include + +// Grid size +const int numRows = 100; +const int numCols = 100; + +class MyGridView : public QGridView +{ +public: + MyGridView() { + setNumRows( ::numRows ); + setNumCols( ::numCols ); + setCellWidth( fontMetrics().width( QString("%1 / %2").arg(numRows()).arg(numCols()))); + setCellHeight( 2*fontMetrics().lineSpacing() ); + setCaption( tr( "Qt Example - This is a grid with 100 x 100 cells" ) ); + } + +protected: + void paintCell( QPainter *p, int row, int col ) { + p->drawLine( cellWidth()-1, 0, cellWidth()-1, cellHeight()-1 ); + p->drawLine( 0, cellHeight()-1, cellWidth()-1, cellHeight()-1 ); + p->drawText( cellRect(), AlignCenter, QString("%1 / %1").arg(row).arg(col) ); + } +}; + +// The program starts here. +int main( int argc, char **argv ) +{ + QApplication app( argc, argv ); + + MyGridView gridview; + app.setMainWidget( &gridview ); + gridview.show(); + return app.exec(); +} diff --git a/examples/gridview/gridview.pro b/examples/gridview/gridview.pro new file mode 100644 index 0000000..f1c0248 --- /dev/null +++ b/examples/gridview/gridview.pro @@ -0,0 +1,10 @@ +TEMPLATE = app +TARGET = gridview + +CONFIG += qt warn_on release +DEPENDPATH = ../../include + +REQUIRES = medium-config + +HEADERS = +SOURCES = gridview.cpp -- cgit v1.2.1