]> git.sesse.net Git - vlc/blob - modules/gui/win32/subtitles.h
* changed OSGraphics constructor (needed for X11)
[vlc] / modules / gui / win32 / subtitles.h
1 /*****************************************************************************\r
2  * subtitles.h: Dialog box for divx subtitle selection\r
3  *****************************************************************************\r
4  * Copyright (C) 2002-2003 VideoLAN\r
5  * $Id: subtitles.h,v 1.3 2003/02/12 02:11:58 ipkiss Exp $\r
6  *\r
7  * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>\r
8  *\r
9  * This program is free software; you can redistribute it and/or modify\r
10  * it under the terms of the GNU General Public License as published by\r
11  * the Free Software Foundation; either version 2 of the License, or\r
12  * (at your option) any later version.\r
13  *\r
14  * This program is distributed in the hope that it will be useful,\r
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
17  * GNU General Public License for more details.\r
18  *\r
19  * You should have received a copy of the GNU General Public License\r
20  * along with this program; if not, write to the Free Software\r
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
22  *****************************************************************************/\r
23 \r
24 #ifndef subtitlesH\r
25 #define subtitlesH\r
26 //---------------------------------------------------------------------------\r
27 #include <Classes.hpp>\r
28 #include <Controls.hpp>\r
29 #include <StdCtrls.hpp>\r
30 #include <Forms.hpp>\r
31 #include <Dialogs.hpp>\r
32 #include <Buttons.hpp>\r
33 //---------------------------------------------------------------------------\r
34 class TSubtitlesDlg : public TForm\r
35 {\r
36 __published:    // IDE-managed Components\r
37     TOpenDialog *OpenDialog1;\r
38     TGroupBox *GroupBoxSubtitles;\r
39     TEdit *EditDelay;\r
40     TEdit *EditFPS;\r
41     TEdit *EditFile;\r
42     TButton *ButtonBrowse;\r
43     TLabel *LabelDelay;\r
44     TLabel *LabelFPS;\r
45     TButton *ButtonOK;\r
46     TButton *ButtonCancel;\r
47     void __fastcall ButtonBrowseClick( TObject *Sender );\r
48     void __fastcall ButtonOKClick( TObject *Sender );\r
49 private:        // User declarations\r
50     intf_thread_t *p_intf;\r
51 public:         // User declarations\r
52     __fastcall TSubtitlesDlg( TComponent* Owner, intf_thread_t *p_intf );\r
53 };\r
54 //---------------------------------------------------------------------------\r
55 #endif\r