]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/bookmarks.cpp
343a1cdefdec6382f7992381f3fc73a04b1914f7
[vlc] / modules / gui / qt4 / dialogs / bookmarks.cpp
1 /*****************************************************************************
2  * bookmarks.cpp : Bookmarks
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  *
6  * Authors: Antoine Lejeune <phytos@via.ecp.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22 #ifdef HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25
26 #include "dialogs/bookmarks.hpp"
27 #include "dialogs_provider.hpp"
28 #include "input_manager.hpp"
29
30 #include <QGridLayout>
31 #include <QSpacerItem>
32 #include <QPushButton>
33
34 BookmarksDialog *BookmarksDialog::instance = NULL;
35
36 BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
37 {
38     setWindowFlags( Qt::Tool );
39     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
40     setWindowTitle( qtr( "Edit bookmark" ) );
41
42     QGridLayout *layout = new QGridLayout( this );
43
44     QPushButton *addButton = new QPushButton( qtr( "Add" ) );
45     QPushButton *delButton = new QPushButton( qtr( "Delete" ) );
46     QPushButton *clearButton = new QPushButton( qtr( "Clear" ) );
47     QPushButton *extractButton = new QPushButton( qtr( "Extract" ) );
48
49     bookmarksList = new QTreeWidget( this );
50     bookmarksList->setRootIsDecorated( false );
51     bookmarksList->setAlternatingRowColors( true );
52     bookmarksList->setSelectionMode( QAbstractItemView::ExtendedSelection );
53     bookmarksList->setSelectionBehavior( QAbstractItemView::SelectRows );
54     bookmarksList->setEditTriggers( QAbstractItemView::SelectedClicked );
55     bookmarksList->setColumnCount( 3 );
56     QStringList headerLabels;
57     headerLabels << qtr( "Description" );
58     headerLabels << qtr( "Bytes" );
59     headerLabels << qtr( "Time" );
60     bookmarksList->setHeaderLabels( headerLabels );
61
62
63     layout->addWidget( addButton, 0, 0 );
64     layout->addWidget( delButton, 1, 0 );
65     layout->addWidget( clearButton, 2, 0 );
66     layout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ), 4, 0 );
67     layout->addWidget( extractButton, 5, 0 );
68     layout->addWidget( bookmarksList, 0, 1, 6, 1);
69     layout->setColumnStretch( 1, 1 );
70
71     CONNECT( bookmarksList, activated( QModelIndex ), this,
72              activateItem( QModelIndex ) );
73     CONNECT( bookmarksList, itemChanged( QTreeWidgetItem*, int ), this, edit( QTreeWidgetItem*, int ) );
74
75     BUTTONACT( addButton, add() );
76     BUTTONACT( delButton, del() );
77     BUTTONACT( clearButton, clear() );
78     BUTTONACT( extractButton, extract() );
79
80     readSettings( "Bookmarks" );
81 }
82
83 BookmarksDialog::~BookmarksDialog()
84 {
85     writeSettings( "Bookmarks" );
86 }
87
88 void BookmarksDialog::update()
89 {
90     input_thread_t *p_input = THEMIM->getInput();
91     if( !p_input ) return;
92
93     seekpoint_t **pp_bookmarks;
94     int i_bookmarks;
95
96     if( bookmarksList->topLevelItemCount() > 0 )
97     {
98         bookmarksList->model()->removeRows( 0, bookmarksList->topLevelItemCount() );
99     }
100
101     if( input_Control( p_input, INPUT_GET_BOOKMARKS, &pp_bookmarks,
102                        &i_bookmarks ) != VLC_SUCCESS )
103         return;
104
105     for( int i = 0; i < i_bookmarks; i++ )
106     {
107         // List with the differents elements of the row
108         QStringList row;
109         row << QString( pp_bookmarks[i]->psz_name );
110         row << QString( "%1" ).arg( pp_bookmarks[i]->i_byte_offset );
111         row << QString( "%1" ).arg( pp_bookmarks[i]->i_time_offset / 1000000 );
112         QTreeWidgetItem *item = new QTreeWidgetItem( bookmarksList, row );
113         item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEditable |
114                         Qt::ItemIsUserCheckable | Qt::ItemIsEnabled);
115         bookmarksList->insertTopLevelItem( i, item );
116     }
117
118 }
119
120 void BookmarksDialog::add()
121 {
122     input_thread_t *p_input = THEMIM->getInput();
123     if( !p_input ) return;
124
125     seekpoint_t bookmark;
126     vlc_value_t pos;
127     bookmark.psz_name = NULL;
128     bookmark.i_byte_offset = 0;
129     bookmark.i_time_offset = 0;
130
131     input_Control( p_input, INPUT_GET_BYTE_POSITION, &bookmark.i_byte_offset );
132     var_Get( p_input, "time", &pos );
133     bookmark.i_time_offset = pos.i_time;
134     input_Control( p_input, INPUT_ADD_BOOKMARK, &bookmark );
135
136     update();
137
138 }
139
140 void BookmarksDialog::del()
141 {
142     input_thread_t *p_input = THEMIM->getInput();
143     if( !p_input ) return;
144
145     int i_focused = bookmarksList->currentIndex().row();
146
147     if( i_focused >= 0 )
148     {
149         input_Control( p_input, INPUT_DEL_BOOKMARK, i_focused );
150     }
151
152     update();
153 }
154
155 void BookmarksDialog::clear()
156 {
157     input_thread_t *p_input = THEMIM->getInput();
158     if( !p_input ) return;
159
160     input_Control( p_input, INPUT_CLEAR_BOOKMARKS );
161
162     update();
163 }
164
165 void BookmarksDialog::edit( QTreeWidgetItem *item, int column )
166 {
167     // We can only edit a item if it is the last item selected
168     if( bookmarksList->selectedItems().isEmpty() ||
169         bookmarksList->selectedItems().last() != item )
170         return;
171
172     input_thread_t *p_input = THEMIM->getInput();
173     if( !p_input ) return;
174
175     // We get the row number of the item
176     int i_edit = bookmarksList->indexOfTopLevelItem( item );
177
178     // We get the bookmarks list
179     seekpoint_t **pp_bookmarks;
180     int i_bookmarks;
181
182     if( input_Control( p_input, INPUT_GET_BOOKMARKS, &pp_bookmarks,
183                        &i_bookmarks ) != VLC_SUCCESS )
184         return;
185
186     if( i_edit >= i_bookmarks )
187         return;
188
189     // We modify the seekpoint
190     seekpoint_t *p_seekpoint = pp_bookmarks[i_edit];
191     if( column == 0 )
192         p_seekpoint->psz_name = strdup( qtu( item->text( column ) ) );
193     else if( column == 1 )
194         p_seekpoint->i_byte_offset = atoi( qtu( item->text( column ) ) );
195     else if( column == 2 )
196         p_seekpoint->i_time_offset = 1000000 * atoll( qtu( item->text( column ) ) );
197
198     if( input_Control( p_input, INPUT_CHANGE_BOOKMARK, p_seekpoint, i_edit ) !=
199         VLC_SUCCESS )
200         return;
201
202     update();
203
204 }
205
206 void BookmarksDialog::extract()
207 {
208     // TODO
209 }
210
211 void BookmarksDialog::activateItem( QModelIndex index )
212 {
213     input_thread_t *p_input = THEMIM->getInput();
214     if( !p_input ) return;
215
216     input_Control( p_input, INPUT_SET_BOOKMARK, index.row() );
217 }