backup...
[situare] / src / ui / panelsliderbar.h
1  /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Kaj Wallin - kaj.wallin@ixonos.com
6
7     Situare is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License
9     version 2 as published by the Free Software Foundation.
10
11     Situare is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with Situare; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19     USA.
20  */
21
22
23 #ifndef PANELSLIDERBAR_H
24 #define PANELSLIDERBAR_H
25
26 #include <QWidget>
27 #include "panelcommon.h"
28
29 /**
30 * @brief Generic class from drawing sliding bar attached to panels
31 *
32 * @author Kaj Wallin - kaj.wallin (at) ixonos.com
33 * @class PanelSliderBar panelsliderbar.h "ui/panelsliderbar.h"
34 */
35 class PanelSliderBar : public QWidget
36 {
37     Q_OBJECT
38
39 public:
40     /**
41     * @brief Constructor
42     *
43     * @param parent Parent
44     * @param side Qstring for the sliderbar location. Accepts "LEFT" and "RIGHT"
45     */
46     PanelSliderBar(QWidget *parent, Side side);
47
48 /*******************************************************************************
49 * BASE CLASS INHERITED AND REIMPLEMENTED MEMBER FUNCTIONS
50 ******************************************************************************/
51 protected:
52     /**
53     * @brief Draws stylesheet used in this class.
54     *
55     * @param * QPaintEvent unused
56     */
57     void paintEvent(QPaintEvent *);
58
59     /**
60     * @brief Mouse release event used to expand/collapse the panel
61     *
62     * @param * Event
63     *
64     * @sa clicked
65     */
66     void mouseReleaseEvent(QMouseEvent *);
67
68
69  /*******************************************************************************
70   * SIGNALS
71   ******************************************************************************/
72 signals:
73     /**
74     * @brief Signal that is emitted the slider bar is clicked
75     *
76     * @sa mouseReleaseEvent
77     */
78     void clicked();
79 };
80 #endif // PANELSLIDERBAR_H