]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/toolbar.hpp
Qt: includes barrier fix.
[vlc] / modules / gui / qt4 / dialogs / toolbar.hpp
1 /*****************************************************************************
2  * ToolbarEdit.hpp : ToolbarEdit dialogs
3  ****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef QVLC_TOOLBAREDIT_DIALOG_H_
25 #define QVLC_TOOLBAREDIT_DIALOG_H_ 1
26
27 #include "util/qvlcframe.hpp"
28 #include "components/controller.hpp"
29
30 #include <QRubberBand>
31 #include <QListWidget>
32 #include <QCheckBox>
33
34 #define PROFILE_NAME_1 "Modern Style"
35 #define VALUE_1 "0|64;39;64;38;65;|0-2;64;3;1;4;64;7;10;9;64-4;37;65;35-4;|12;11;13;14;|5-1;33;6-1;|0-2;64;3;1;4;64;37;64;38;64;8;65;35-4;34;"
36 #define PROFILE_NAME_2 "Classic Style"
37 #define VALUE_2 "1|64;39-1;64;38;13-1;|2-1;32-4;0-5;1-5;32-5;3-5;5-5;6-5;4-5;32-5;10-1;64-1;35-1;65;|12-1;11-1;13-1;14-1;|33;37-4;|0-5;1-5;32-1;1-5;5-1;6-1;4-5;32-1;12-5;11-1;65;34-4;35-1;"
38 #define PROFILE_NAME_3 "Minimalist Style"
39 #define VALUE_3 "0|64;65;|0-7;64;3-1;1-5;4-1;64;12-5;64-5;37-4;38;64-4;10-1;65;36-4;|11;13;13;|5-1;33;6-1;|0-5;64;3-5;1-5;4-5;64;12-5;65;34-4;35-1;"
40 #define PROFILE_NAME_4 "One-Liner Style"
41 #define VALUE_4 "0|64;38;65;|0-4;64;3;1;4;64;7;10;9;64-4;39;64-4;37;65;36-4;|12;11;14;13;|5-1;33;6-1;|0-2;64;3;1;4;64;37;64;38;64;8;65;35-4;34;"
42 #define PROFILE_NAME_5 "Simplest Style"
43 #define VALUE_5 "0||36-4;65-4;0-7;4-5;1-5;65-4;7-5;|12-4;11;13;||36-4;65-4;0-5;4-5;1-5;65;8-5;"
44
45 class ToolbarEditDialog;
46 class DroppingController;
47 class QCheckBox;
48 class QComboBox;
49
50 class WidgetListing : public QListWidget
51 {
52     Q_OBJECT;
53 public:
54     WidgetListing( intf_thread_t *, QWidget *_parent = 0 );
55 protected:
56     virtual void startDrag( Qt::DropActions /*supportedActions*/ );
57 private:
58     ToolbarEditDialog *parent;
59 };
60
61 class ToolbarEditDialog : public QVLCFrame
62 {
63     Q_OBJECT;
64 public:
65     static ToolbarEditDialog * getInstance( intf_thread_t *p_intf )
66     {
67         if( !instance)
68             instance = new ToolbarEditDialog( p_intf );
69         return instance;
70     }
71     static void killInstance()
72     { if( instance ) delete instance; instance = NULL;}
73     virtual ~ToolbarEditDialog();
74     int getOptions() { return flatBox->isChecked() * WIDGET_FLAT +
75                         bigBox->isChecked() * WIDGET_BIG +
76                         !shinyBox->isChecked() * WIDGET_SHINY; }
77 private:
78     ToolbarEditDialog( intf_thread_t * );
79     static ToolbarEditDialog *instance;
80
81     QCheckBox *flatBox, *bigBox, *shinyBox;
82     QComboBox *positionCombo, *profileCombo;
83
84     WidgetListing *widgetListing;
85     DroppingController *controller1, *controller2, *controllerA;
86     DroppingController *controllerFSC, *controller;
87
88 private slots:
89     void newProfile();
90     void deleteProfile();
91     void changeProfile( int );
92     void cancel();
93     void close();
94 };
95
96 class DroppingController: public AbstractController
97 {
98     Q_OBJECT;
99 public:
100     DroppingController( intf_thread_t *, QString line, QWidget *parent = 0 );
101     QString getValue();
102     virtual ~DroppingController();
103
104     void resetLine( QString );
105 protected:
106     virtual void createAndAddWidget( QBoxLayout *controlLayout, int i_index,
107             buttonType_e i_type, int i_option );
108     virtual void dragEnterEvent ( QDragEnterEvent * event );
109     virtual void dragMoveEvent(QDragMoveEvent *event);
110     virtual void dropEvent ( QDropEvent * event );
111     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
112
113     virtual void doAction( int );
114
115     bool eventFilter( QObject *, QEvent * );
116 private:
117     struct doubleInt
118     {
119         int i_type;
120         int i_option;
121     };
122     QRubberBand *rubberband;
123     QList <doubleInt *> widgetList;
124
125     int getParentPosInLayout( QPoint point);
126
127     bool b_draging;
128
129 };
130
131 #endif
132