#include <sys/time.h>#include <gtk/gtk.h>#include "page_export.h"#include "kino_common.h"#include "support.h"Include dependency graph for export.h:

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

Go to the source code of this file.
Enumerations | |
| enum | export_mode { EXPORT_MODE_1394, EXPORT_MODE_AVI, EXPORT_MODE_STILLS, EXPORT_MODE_AUDIO, EXPORT_MODE_MJPEG, EXPORT_MODE_PIPE } |
| Export mode enumeration. More... | |
| enum | export_result { EXPORT_RESULT_FAILURE, EXPORT_RESULT_SUCCESS, EXPORT_RESULT_ABORT } |
| Export result enumeration. More... | |
| enum | export_component_enum { EXPORT_SCENE_LIST = 2, EXPORT_PREVIEW = 0x01000000, EXPORT_EXPORT = 0x02000000, EXPORT_PAUSE = 0x04000000 } |
| Export component enumarations. More... | |
|
|
Export component enumarations. This defines widgets that activated and deactivated by the individual export pages. Definition at line 65 of file export.h. 00065 {
00066 EXPORT_SCENE_LIST = 2,
00067 /* I guess the compiler will barf if we choose SCENE_LIST again */
00068 EXPORT_PREVIEW = 0x01000000,
00069 EXPORT_EXPORT = 0x02000000,
00070 EXPORT_PAUSE = 0x04000000
00071 /* Note, stop is supported by all - no need to
00072 have it in here... */
00073 };
|
|
|
Export mode enumeration. This assigns each export mode an identifier that can be used as arguments for certain methods.
Definition at line 43 of file export.h. 00043 {
00044 EXPORT_MODE_1394,
00045 EXPORT_MODE_AVI,
00046 EXPORT_MODE_STILLS,
00047 EXPORT_MODE_AUDIO,
00048 EXPORT_MODE_MJPEG,
00049 EXPORT_MODE_PIPE
00050 };
|
|
|
Export result enumeration. The export page returns one of these to indicate state upon completion of an export job. Definition at line 57 of file export.h. 00057 {
00058 EXPORT_RESULT_FAILURE,
00059 EXPORT_RESULT_SUCCESS,
00060 EXPORT_RESULT_ABORT
00061 };
|
1.4.2