Generic button and testbench for it created.
[situare] / src / ui / buttonitem.h
diff --git a/src/ui/buttonitem.h b/src/ui/buttonitem.h
new file mode 100644 (file)
index 0000000..2be0b47
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+   Situare - A location system for Facebook
+   Copyright (C) 2010  Ixonos Plc. Authors:
+
+       Jukka Saastamoinen - jukka.saastamoinen@ixonos.com
+
+   Situare is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License
+   version 2 as published by the Free Software Foundation.
+
+   Situare is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with Situare; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+   USA.
+*/
+
+#ifndef BUTTONITEM_H
+#define BUTTONITEM_H
+
+#include <QtGui>
+
+class ButtonItem : public QPushButton
+{
+    Q_OBJECT
+public:
+    /**
+    * @brief Constructor
+    *
+    * @param parent Parent
+    */
+    ButtonItem(QWidget *parent = 0);
+    ~ButtonItem();
+
+/*******************************************************************************
+* BASE CLASS INHERITED AND REIMPLEMENTED MEMBER FUNCTIONS
+*******************************************************************************/
+protected:
+    /**
+    * @brief This function is called when the widget is drawn
+    *
+    * @param aPaintEvent Pointer to paint event
+    */
+    //void paintEvent(QPaintEvent *aPaintEvent);
+    /**
+    * @brief This function returns the preferred size of the button
+    *        for the layout using it.
+    *
+    * @return Size of the button
+    */
+    QSize sizeHint() const;
+
+/*******************************************************************************
+* DATA MEMBERS
+*******************************************************************************/
+private:
+    QSize size;
+};
+
+#endif // BUTTONITEM_H