toolbar.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * ToolbarEdit.hpp : ToolbarEdit dialogs
  3.  ****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: 1238d0de79a8f86d26907676812f76bdbb2ce6f2 $
  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. #ifndef QVLC_TOOLBAREDIT_DIALOG_H_
  24. #define QVLC_TOOLBAREDIT_DIALOG_H_ 1
  25. #include "util/qvlcframe.hpp"
  26. #include "components/controller.hpp"
  27. #include <QRubberBand>
  28. #include <QListWidget>
  29. #include <QCheckBox>
  30. #define PROFILE_NAME_1 "Modern Style"
  31. #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;"
  32. #define PROFILE_NAME_2 "Classic Style"
  33. #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;"
  34. #define PROFILE_NAME_3 "Minimalist Style"
  35. #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;"
  36. #define PROFILE_NAME_4 "One-Liner Style"
  37. #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;"
  38. #define PROFILE_NAME_5 "Simplest Style"
  39. #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;"
  40. class ToolbarEditDialog;
  41. class DroppingController;
  42. class QCheckBox;
  43. class QComboBox;
  44. class WidgetListing : public QListWidget
  45. {
  46.     Q_OBJECT;
  47. public:
  48.     WidgetListing( intf_thread_t *, QWidget *_parent = 0 );
  49. protected:
  50.     virtual void startDrag( Qt::DropActions /*supportedActions*/ );
  51. private:
  52.     ToolbarEditDialog *parent;
  53. };
  54. class ToolbarEditDialog : public QVLCDialog
  55. {
  56.     Q_OBJECT;
  57. public:
  58.     ToolbarEditDialog( QWidget *, intf_thread_t * );
  59.     int getOptions() { return flatBox->isChecked() * WIDGET_FLAT +
  60.                         bigBox->isChecked() * WIDGET_BIG +
  61.                         !shinyBox->isChecked() * WIDGET_SHINY; }
  62.     virtual ~ToolbarEditDialog();
  63. private:
  64.     QCheckBox *flatBox, *bigBox, *shinyBox;
  65.     QComboBox *positionCombo, *profileCombo;
  66.     WidgetListing *widgetListing;
  67.     DroppingController *controller1, *controller2, *controllerA;
  68.     DroppingController *controllerFSC, *controller;
  69. private slots:
  70.     void newProfile();
  71.     void deleteProfile();
  72.     void changeProfile( int );
  73.     void cancel();
  74.     void close();
  75. };
  76. class DroppingController: public AbstractController
  77. {
  78.     Q_OBJECT;
  79. public:
  80.     DroppingController( intf_thread_t *, const QString& line, QWidget *parent = 0 );
  81.     QString getValue();
  82.     virtual ~DroppingController();
  83.     void resetLine( const QString& );
  84. protected:
  85.     virtual void createAndAddWidget( QBoxLayout *controlLayout, int i_index,
  86.             buttonType_e i_type, int i_option );
  87.     virtual void dragEnterEvent ( QDragEnterEvent * event );
  88.     virtual void dragMoveEvent(QDragMoveEvent *event);
  89.     virtual void dropEvent ( QDropEvent * event );
  90.     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
  91.     virtual void doAction( int );
  92.     bool eventFilter( QObject *, QEvent * );
  93. private:
  94.     struct doubleInt
  95.     {
  96.         int i_type;
  97.         int i_option;
  98.     };
  99.     QRubberBand *rubberband;
  100.     QList <doubleInt *> widgetList;
  101.     int getParentPosInLayout( QPoint point);
  102.     bool b_draging;
  103. };
  104. #endif