
Go to the source code of this file.
Data Structures | |
| class | DialogsProvider |
| class | DialogEvent |
Defines | |
| #define | ADD_FILTER_MEDIA(string) |
| #define | ADD_FILTER_VIDEO(string) |
| #define | ADD_FILTER_AUDIO(string) |
| #define | ADD_FILTER_PLAYLIST(string) |
| #define | ADD_FILTER_SUBTITLE(string) |
| #define | ADD_FILTER_ALL(string) |
Enumerations | |
| enum | { EXT_FILTER_MEDIA = 0x01, EXT_FILTER_VIDEO = 0x02, EXT_FILTER_AUDIO = 0x04, EXT_FILTER_PLAYLIST = 0x08, EXT_FILTER_SUBTITLE = 0x10 } |
| enum | { DialogEvent_Type = QEvent::User + DialogEventType + 1, SetVideoOnTopEvent_Type = QEvent::User + DialogEventType + 4 } |
| #define ADD_FILTER_ALL | ( | string | ) |
Value:
string += qtr( "All Files" ); \ string += " (*)";
Referenced by DialogsProvider::showSimpleOpen().
| #define ADD_FILTER_AUDIO | ( | string | ) |
Value:
string += qtr( "Audio Files" ); \ string += " ( "; \ string += EXTENSIONS_AUDIO; \ string += ");;";
Referenced by DialogsProvider::showSimpleOpen().
| #define ADD_FILTER_MEDIA | ( | string | ) |
Value:
string += qtr( "Media Files" ); \ string += " ( "; \ string += EXTENSIONS_MEDIA; \ string += ");;";
Referenced by DialogsProvider::showSimpleOpen().
| #define ADD_FILTER_PLAYLIST | ( | string | ) |
Value:
string += qtr( "Playlist Files" ); \ string += " ( "; \ string += EXTENSIONS_PLAYLIST; \ string += ");;";
Referenced by DialogsProvider::showSimpleOpen().
| #define ADD_FILTER_SUBTITLE | ( | string | ) |
Value:
string += qtr( "Subtitles Files" );\ string += " ( "; \ string += EXTENSIONS_SUBTITLE; \ string += ");;";
Referenced by DialogsProvider::showSimpleOpen().
| #define ADD_FILTER_VIDEO | ( | string | ) |
Value:
string += qtr( "Video Files" ); \ string += " ( "; \ string += EXTENSIONS_VIDEO; \ string += ");;";
Referenced by DialogsProvider::showSimpleOpen().
| anonymous enum |
1.5.6