]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/toolbar.hpp
Fix QToolButtonExt edge cases
[vlc] / modules / gui / qt4 / dialogs / toolbar.hpp
1 /*****************************************************************************
2  * toolbar.hpp : ToolbarEdit dialogs
3  ****************************************************************************
4  * Copyright (C) 2008-2011 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"                                 /* QVLCDialog */
28 #include "components/controller.hpp"                  /* AbstractController */
29
30 #include <QListWidget>
31 #include <QCheckBox>
32
33 #define PROFILE_NAME_1 "VLC 1.1.x Style"
34 #define VALUE_1 "0|64;39;64;38;65;|0-2;64;3;1;4;64;7;9;64;10;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;"
35 #define PROFILE_NAME_2 "VLC 0.8.x Style"
36 #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;"
37 #define PROFILE_NAME_3 "Minimalist Style"
38 #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;"
39 #define PROFILE_NAME_4 "One-Liner Style"
40 #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;"
41 #define PROFILE_NAME_5 "Simplest Style"
42 #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;"
43
44 class ToolbarEditDialog;
45 class DroppingController;
46 class QComboBox;
47 class QRubberBand;
48
49 class WidgetListing : public QListWidget
50 {
51     Q_OBJECT
52 public:
53     WidgetListing( intf_thread_t *, QWidget *_parent = 0 );
54 protected:
55     virtual void startDrag( Qt::DropActions /*supportedActions*/ );
56 private:
57     ToolbarEditDialog *parent;
58 };
59
60 class ToolbarEditDialog : public QVLCDialog
61 {
62     Q_OBJECT
63 public:
64     ToolbarEditDialog( QWidget *, intf_thread_t * );
65     int getOptions() { return flatBox->isChecked() * WIDGET_FLAT +
66                         bigBox->isChecked() * WIDGET_BIG +
67                         !shinyBox->isChecked() * WIDGET_SHINY; }
68     virtual ~ToolbarEditDialog();
69
70 private:
71     QCheckBox *flatBox, *bigBox, *shinyBox;
72     QComboBox *positionCombo, *profileCombo;
73
74     WidgetListing *widgetListing;
75     DroppingController *controller1, *controller2, *controllerA;
76     DroppingController *controllerFSC, *controller;
77
78 private slots:
79     void newProfile();
80     void deleteProfile();
81     void changeProfile( int );
82     void cancel();
83     void close();
84 };
85
86 class DroppingController: public AbstractController
87 {
88     Q_OBJECT
89 public:
90     DroppingController( intf_thread_t *, const QString& line, QWidget *parent = 0 );
91     QString getValue();
92     virtual ~DroppingController();
93
94     void resetLine( const QString& );
95 protected:
96     virtual void createAndAddWidget( QBoxLayout *controlLayout, int i_index,
97             buttonType_e i_type, int i_option );
98     virtual void dragEnterEvent ( QDragEnterEvent * event );
99     virtual void dragMoveEvent(QDragMoveEvent *event);
100     virtual void dropEvent ( QDropEvent * event );
101     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
102
103     virtual void doAction( int );
104
105     virtual bool eventFilter( QObject *, QEvent * );
106
107 private:
108     struct doubleInt
109     {
110         int i_type;
111         int i_option;
112     };
113     QRubberBand *rubberband;
114     QList <doubleInt *> widgetList;
115
116     int i_dragIndex;
117     bool b_draging;
118
119     int getParentPosInLayout( QPoint point);
120 };
121
122 #endif