summaryrefslogtreecommitdiff
path: root/src/defaultgui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/defaultgui.h')
-rw-r--r--src/defaultgui.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/defaultgui.h b/src/defaultgui.h
index 4e6c0fc..e21a65b 100644
--- a/src/defaultgui.h
+++ b/src/defaultgui.h
@@ -1,5 +1,5 @@
/* smplayer, GUI front-end for mplayer.
- Copyright (C) 2006-2009 Ricardo Villalba <rvm@escomposlinux.org>
+ Copyright (C) 2006-2010 Ricardo Villalba <rvm@escomposlinux.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -32,6 +32,7 @@ class TimeSliderAction;
class VolumeSliderAction;
class FloatingWidget;
class TimeLabelAction;
+class MyAction;
#if MINI_ARROW_BUTTONS
class SeekingButton;
@@ -79,6 +80,8 @@ protected slots:
virtual void updateWidgets();
virtual void displayTime(QString text);
virtual void displayFrame(int frame);
+ virtual void displayABSection(int secs_a, int secs_b);
+ virtual void displayVideoInfo(int width, int height, double fps);
virtual void showFloatingControl(QPoint p);
virtual void showFloatingMenu(QPoint p);
@@ -93,6 +96,8 @@ protected slots:
protected:
QLabel * time_display;
QLabel * frame_display;
+ QLabel * ab_section_display;
+ QLabel * video_info_display;
QToolBar * controlwidget;
QToolBar * controlwidget_mini;
@@ -114,7 +119,11 @@ protected:
FloatingWidget * floating_control;
TimeLabelAction * time_label_action;
+ MyAction * viewFrameCounterAct;
+ MyAction * viewVideoInfoAct;
+
QMenu * toolbar_menu;
+ QMenu * statusbar_menu;
int last_second;