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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * preferences_widgets.h : WinCE gui plugin for VLC
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2003 the VideoLAN team
  5.  * $Id: 37cd1c2d9342a9e0e544b04ffa4b707c49c551bf $
  6.  *
  7.  * Authors: Marodon Cedric <cedric_marodon@yahoo.fr>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. class ConfigControl
  25. {
  26. public:
  27.     ConfigControl( vlc_object_t *, module_config_t *, HWND, HINSTANCE );
  28.     virtual ~ConfigControl();
  29.     virtual int GetIntValue() {return 0;}
  30.     virtual float GetFloatValue() {return 0;}
  31.     virtual char *GetPszValue() {return GetName();}
  32.     // FIXME returns name corresponding to parent
  33.     // put the panel name corresponding to HWND into the constructor and make it private
  34.     char *GetName();
  35.     int GetType();
  36.     bool IsAdvanced();
  37.     void SetUpdateCallback( void (*)( void * ), void * );
  38. protected:
  39.     /*wxBoxSizer *sizer;*/
  40.     HWND label;
  41.     vlc_object_t *p_this;
  42.     void (*pf_update_callback)( void * );
  43.     void *p_update_data;
  44.     void OnUpdate( UINT );
  45. private:
  46.     HWND parent;
  47.     char *name;
  48.     int i_type;
  49.     bool b_advanced;
  50. };
  51. ConfigControl *CreateConfigControl( vlc_object_t *,
  52.                                     module_config_t *, HWND, HINSTANCE,
  53.                                     int * );
  54. class KeyConfigControl: public ConfigControl
  55. {
  56. public:
  57.     KeyConfigControl( vlc_object_t *, module_config_t *, HWND,
  58.                       HINSTANCE, int * );
  59.     ~KeyConfigControl();
  60.     virtual int GetIntValue();
  61. private:
  62.     HWND alt;
  63.     HWND alt_label;
  64.     HWND ctrl;
  65.     HWND ctrl_label;
  66.     HWND shift;
  67.     HWND shift_label;
  68.     HWND combo;
  69.     // Array of key descriptions, for the ComboBox
  70.     static string *m_keysList;
  71. };
  72. class ModuleConfigControl: public ConfigControl
  73. {
  74. public:
  75.     ModuleConfigControl( vlc_object_t *, module_config_t *, HWND,
  76.                          HINSTANCE, int * );
  77.     ~ModuleConfigControl();
  78.     virtual char *GetPszValue();
  79. private:
  80.     HWND combo;
  81. };
  82. class StringConfigControl: public ConfigControl
  83. {
  84. public:
  85.     StringConfigControl( vlc_object_t *, module_config_t *, HWND,
  86.                          HINSTANCE, int * );
  87.     ~StringConfigControl();
  88.     virtual char *GetPszValue();
  89. private:
  90.     HWND textctrl;
  91. };
  92. class StringListConfigControl: public ConfigControl
  93. {
  94. public:
  95.     StringListConfigControl( vlc_object_t *, module_config_t *, HWND,
  96.                              HINSTANCE, int * );
  97.     ~StringListConfigControl();
  98.     virtual char *GetPszValue();
  99. private:
  100. };
  101. class FileConfigControl: public ConfigControl
  102. {
  103. public:
  104.     FileConfigControl( vlc_object_t *, module_config_t *, HWND,
  105.                        HINSTANCE, int * );
  106.     ~FileConfigControl();
  107.     void OnBrowse( UINT );
  108.     virtual char *GetPszValue();
  109. private:
  110. };
  111. class IntegerConfigControl: public ConfigControl
  112. {
  113. public:
  114.     IntegerConfigControl( vlc_object_t *, module_config_t *, HWND,
  115.                           HINSTANCE, int * );
  116.     ~IntegerConfigControl();
  117.     virtual int GetIntValue();
  118. private:
  119. };
  120. class IntegerListConfigControl: public ConfigControl
  121. {
  122. public:
  123.     IntegerListConfigControl( vlc_object_t *, module_config_t *, HWND,
  124.                               HINSTANCE, int * );
  125.     ~IntegerListConfigControl();
  126.     virtual int GetIntValue();
  127. private:
  128. };
  129. class RangedIntConfigControl: public ConfigControl
  130. {
  131. public:
  132.     RangedIntConfigControl( vlc_object_t *, module_config_t *, HWND,
  133.                             HINSTANCE, int * );
  134.     ~RangedIntConfigControl();
  135.     virtual int GetIntValue();
  136. private:
  137. };
  138. class FloatConfigControl: public ConfigControl
  139. {
  140. public:
  141.     FloatConfigControl( vlc_object_t *, module_config_t *, HWND,
  142.                         HINSTANCE, int * );
  143.     ~FloatConfigControl();
  144.     virtual float GetFloatValue();
  145. private:
  146.     HWND textctrl;
  147. };
  148. class BoolConfigControl: public ConfigControl
  149. {
  150. public:
  151.     BoolConfigControl( vlc_object_t *, module_config_t *, HWND,
  152.                        HINSTANCE, int * );
  153.     ~BoolConfigControl();
  154.     virtual int GetIntValue();
  155. private:
  156.     HWND checkbox;
  157.     HWND checkbox_label;
  158. };