#include <stdint.h>#include <gtk/gtk.h>Include dependency graph for kino_extra.h:

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

Go to the source code of this file.
Enumerations | |
| enum | frame_type { FRAME = 0, KEY = 1, LOCKED_KEY = 2 } |
| Enumerated type for classifying the current frame, being either a computed frame, a key or a locked/non-removable key. More... | |
Functions | |
| PlayList & | GetCurrentPlayList () |
| Provides plug-ins with current playlist. | |
| SelectedFrames & | GetSelectedFramesForFX () |
| GtkWindow * | GetKinoWidgetWindow () |
| void | Repaint () |
| KeyFrameController * | GetKeyFrameController (KeyFrameControllerClient *client) |
| Factory method for the key frame controller. | |
|
|
Enumerated type for classifying the current frame, being either a computed frame, a key or a locked/non-removable key.
Definition at line 92 of file kino_extra.h. 00092 { FRAME = 0, KEY = 1, LOCKED_KEY = 2 };
|
|
|
Provides plug-ins with current playlist.
Definition at line 55 of file page_magick.cc. References common, and KinoCommon::getPlayList(). Referenced by FXSelectedFrames::GetAudio(), FXSelectedFrames::GetScaledImage(), and FXSelectedFrames::Initialise(). 00056 {
00057 return * common->getPlayList( );
00058 }
|
|
|
Factory method for the key frame controller.
Definition at line 3403 of file page_magick.cc. References common, and KinoCommon::getPageMagick(). 03404 {
03405 common->getPageMagick()->SetKeyFrameControllerClient( client );
03406 return static_cast< KeyFrameController* >( common->getPageMagick() );
03407 }
|
|
|
Definition at line 3295 of file page_magick.cc. References common, KinoCommon::getWidget(), and KinoCommon::getWidgetWindow(). 03296 {
03297 return KinoCommon::getWidgetWindow( common->getWidget() );
03298 }
|
|
|
Definition at line 3288 of file page_magick.cc. References common, KinoCommon::getPageMagick(), and FXSelectedFrames::Initialise(). Referenced by ImageCreateFromFile::CreateFrame(), AudioMix::GetFrame(), AudioDub::GetFrame(), ImageCreateFromFile::InterpretWidgets(), Repaint(), PageMagick::videoNextScene(), and PageMagick::videoPreviousScene(). 03289 {
03290 static FXSelectedFrames selected;
03291 selected.Initialise( common->getPageMagick( ) );
03292 return selected;
03293 }
|
|
1.4.2