]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/toolbar.hpp
qt4: attempt to work around a design flaw in the toolbar editor
[vlc] / modules / gui / qt4 / dialogs / toolbar.hpp
1 /*****************************************************************************
2  * ToolbarEdit.hpp : ToolbarEdit dialogs
3  ****************************************************************************
4  * Copyright (C) 2008-2009 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;20;19;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;|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-5;38-5;64-4;10-1;65;36-4;|11-5;13-5;14-5;|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 QVLCDialog
62 {
63     Q_OBJECT
64 public:
65     ToolbarEditDialog( QWidget *, intf_thread_t * );
66     int getOptions() { return flatBox->isChecked() * WIDGET_FLAT +
67                         bigBox->isChecked() * WIDGET_BIG +
68                         !shinyBox->isChecked() * WIDGET_SHINY; }
69     virtual ~ToolbarEditDialog();
70 private:
71
72     QCheckBox *flatBox, *bigBox, *shinyBox;
73     QComboBox *positionCombo, *profileCombo;
74
75     WidgetListing *widgetListing;
76     DroppingController *controller1, *controller2, *controllerA;
77     DroppingController *controllerFSC, *controller;
78
79 private slots:
80     void newProfile();
81     void deleteProfile();
82     void changeProfile( int );
83     void cancel();
84     void close();
85 };
86
87 class DroppingController: public AbstractController
88 {
89     Q_OBJECT
90 public:
91     DroppingController( intf_thread_t *, const QString& line, QWidget *parent = 0 );
92     QString getValue();
93     virtual ~DroppingController();
94
95     void resetLine( const QString& );
96 protected:
97     virtual void createAndAddWidget( QBoxLayout *controlLayout, int i_index,
98             buttonType_e i_type, int i_option );
99     virtual void dragEnterEvent ( QDragEnterEvent * event );
100     virtual void dragMoveEvent(QDragMoveEvent *event);
101     virtual void dropEvent ( QDropEvent * event );
102     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
103
104     virtual void doAction( int );
105
106     bool eventFilter( QObject *, QEvent * );
107 private:
108     struct doubleInt
109     {
110         int i_type;
111         int i_option;
112     };
113     QRubberBand *rubberband;
114     QList <doubleInt *> widgetList;
115     int i_dragIndex;
116
117     int getParentPosInLayout( QPoint point);
118
119     bool b_draging;
120
121 };
122
123 #endif
124