example/DemoGUI/GridView.h
author cgandhi
Thu, 05 Aug 2010 16:35:33 +0530
changeset 16 b78fa4cdbf2b
permissions -rw-r--r--
pushing the demo application
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     1
#ifndef GRIDVIEW_H
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     2
#define GRIDVIEW_H
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     3
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     4
///Its not in use at this poin
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     5
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     6
#include <qwidget.h>
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     7
#include "WidgetConstants.h"
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     8
#include<qpushbutton.h>
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     9
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    10
class GridView : public QWidget
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    11
{
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    12
Q_OBJECT
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    13
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    14
public:
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    15
    GridView();
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    16
    void CreateGridView(QStringList aIconPath, QStringList names);
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    17
    ~GridView();
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    18
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    19
};
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    20
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    21
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    22
#endif // GRIDVIEW_H