]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/bookmarks.hpp
Avoid a segfault when services_discovery_GetServicesNames fail.
[vlc] / modules / gui / wxwidgets / dialogs / bookmarks.hpp
1 /*****************************************************************************
2  * bookmarks.hpp: Headers for the bookmarks window
3  *****************************************************************************
4  * Copyright (C) 1999-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@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 _WXVLC_BOOKMARKS_H_
25 #define _WXVLC_BOOKMARKS_H_
26
27 #include "wxwidgets.hpp"
28 #include <wx/listctrl.h>
29
30 namespace wxvlc
31 {
32     class BookmarksDialog: public wxFrame
33     {
34     public:
35         /* Constructor */
36         BookmarksDialog( intf_thread_t *p_intf, wxWindow *p_parent );
37         virtual ~BookmarksDialog();
38
39         bool Show( bool );
40
41     private:
42         void Update();
43
44         /* Event handlers (these functions should _not_ be virtual) */
45         void OnClose( wxCloseEvent& event );
46         void OnAdd( wxCommandEvent& event );
47         void OnDel( wxCommandEvent& event );
48         void OnClear( wxCommandEvent& event );
49         void OnActivateItem( wxListEvent& event );
50         void OnUpdate( wxCommandEvent &event );
51         void OnEdit( wxCommandEvent& event );
52         void OnExtract( wxCommandEvent& event );
53
54         DECLARE_EVENT_TABLE();
55
56         intf_thread_t *p_intf;
57         wxWindow *p_parent;
58
59         wxListView *list_ctrl;
60     };
61
62     class BookmarkEditDialog : public wxDialog
63     {
64     public:
65         /* Constructor */
66         BookmarkEditDialog( intf_thread_t *p_intf, wxWindow *p_parent,
67                             seekpoint_t *p_seekpoint );
68         virtual ~BookmarkEditDialog();
69         seekpoint_t *p_seekpoint;
70     private:
71         wxTextCtrl *name_text, *time_text, *bytes_text;
72
73         void OnOK( wxCommandEvent& event);
74         void OnCancel( wxCommandEvent& event);
75
76         DECLARE_EVENT_TABLE();
77
78         intf_thread_t *p_intf;
79     };
80 };
81
82 #endif