#include <vector>#include <gtk/gtk.h>#include <glib/gi18n.h>#include <gdk/gdkkeysyms.h>#include <limits.h>#include <stdlib.h>#include <stdint.h>#include "playlist.h"#include "frame.h"#include "preferences.h"#include "filehandler.h"#include "smiltime.h"Include dependency graph for kino_common.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Enumerations | |
| enum | component_enum { EDIT_MENU = 2, SCENE_LIST = 32, VIDEO_START_OF_MOVIE = 64, VIDEO_START_OF_SCENE = 128, VIDEO_REWIND = 256, VIDEO_BACK = 512, VIDEO_PLAY = 1024, VIDEO_PAUSE = 2048, VIDEO_STOP = 4096, VIDEO_FORWARD = 8192, VIDEO_FAST_FORWARD = 16384, VIDEO_NEXT_SCENE = 32768, VIDEO_END_OF_MOVIE = 65536, INFO_FRAME = 131072, VIDEO_SHUTTLE = 262144 } |
| Component enumeration. More... | |
| enum | page_enum { PAGE_EDITOR, PAGE_CAPTURE, PAGE_TIMELINE, PAGE_TRIM, PAGE_MAGICK, PAGE_EXPORT, PAGE_BTTV } |
| Page enumeration. More... | |
Variables | |
| KinoCommon * | common |
|
|
Component enumeration. This defines all the main window widgets that can be activated and deactivated by a notebook page.
Definition at line 44 of file kino_common.h. 00044 {
00045 EDIT_MENU = 2,
00046 SCENE_LIST = 32,
00047 VIDEO_START_OF_MOVIE = 64,
00048 VIDEO_START_OF_SCENE = 128,
00049 VIDEO_REWIND = 256,
00050 VIDEO_BACK = 512,
00051 VIDEO_PLAY = 1024,
00052 VIDEO_PAUSE = 2048,
00053 VIDEO_STOP = 4096,
00054 VIDEO_FORWARD = 8192,
00055 VIDEO_FAST_FORWARD = 16384,
00056 VIDEO_NEXT_SCENE = 32768,
00057 VIDEO_END_OF_MOVIE = 65536,
00058 INFO_FRAME = 131072,
00059 VIDEO_SHUTTLE = 262144
00060 };
|
|
|
Page enumeration. This assigns each page an identifier that can be used as arguments for certain methods.
Definition at line 68 of file kino_common.h. 00068 {
00069 PAGE_EDITOR,
00070 PAGE_CAPTURE,
00071 PAGE_TIMELINE,
00072 PAGE_TRIM,
00073 PAGE_MAGICK,
00074 PAGE_EXPORT,
00075 PAGE_BTTV
00076 };
|
|
|
Definition at line 58 of file commands.cc. |
1.4.2