File: pdfpc.c

package info (click to toggle)
pdf-presenter-console 3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,660 kB
  • sloc: ansic: 18,202; makefile: 6
file content (778 lines) | stat: -rw-r--r-- 33,273 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
/* pdfpc.c generated by valac 0.16.0, the Vala compiler
 * generated from pdfpc.vala, do not modify */


#include <glib.h>
#include <glib-object.h>
#include <gtk/gtk.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <gdk/gdk.h>


#define PDFPC_TYPE_APPLICATION (pdfpc_application_get_type ())
#define PDFPC_APPLICATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_TYPE_APPLICATION, pdfpcApplication))
#define PDFPC_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_TYPE_APPLICATION, pdfpcApplicationClass))
#define PDFPC_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_TYPE_APPLICATION))
#define PDFPC_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_TYPE_APPLICATION))
#define PDFPC_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_TYPE_APPLICATION, pdfpcApplicationClass))

typedef struct _pdfpcApplication pdfpcApplication;
typedef struct _pdfpcApplicationClass pdfpcApplicationClass;
typedef struct _pdfpcApplicationPrivate pdfpcApplicationPrivate;

#define PDFPC_WINDOW_TYPE_FULLSCREEN (pdfpc_window_fullscreen_get_type ())
#define PDFPC_WINDOW_FULLSCREEN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_WINDOW_TYPE_FULLSCREEN, pdfpcWindowFullscreen))
#define PDFPC_WINDOW_FULLSCREEN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_WINDOW_TYPE_FULLSCREEN, pdfpcWindowFullscreenClass))
#define PDFPC_WINDOW_IS_FULLSCREEN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_WINDOW_TYPE_FULLSCREEN))
#define PDFPC_WINDOW_IS_FULLSCREEN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_WINDOW_TYPE_FULLSCREEN))
#define PDFPC_WINDOW_FULLSCREEN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_WINDOW_TYPE_FULLSCREEN, pdfpcWindowFullscreenClass))

typedef struct _pdfpcWindowFullscreen pdfpcWindowFullscreen;
typedef struct _pdfpcWindowFullscreenClass pdfpcWindowFullscreenClass;

#define PDFPC_WINDOW_TYPE_PRESENTATION (pdfpc_window_presentation_get_type ())
#define PDFPC_WINDOW_PRESENTATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_WINDOW_TYPE_PRESENTATION, pdfpcWindowPresentation))
#define PDFPC_WINDOW_PRESENTATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_WINDOW_TYPE_PRESENTATION, pdfpcWindowPresentationClass))
#define PDFPC_WINDOW_IS_PRESENTATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_WINDOW_TYPE_PRESENTATION))
#define PDFPC_WINDOW_IS_PRESENTATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_WINDOW_TYPE_PRESENTATION))
#define PDFPC_WINDOW_PRESENTATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_WINDOW_TYPE_PRESENTATION, pdfpcWindowPresentationClass))

typedef struct _pdfpcWindowPresentation pdfpcWindowPresentation;
typedef struct _pdfpcWindowPresentationClass pdfpcWindowPresentationClass;

#define PDFPC_WINDOW_TYPE_PRESENTER (pdfpc_window_presenter_get_type ())
#define PDFPC_WINDOW_PRESENTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_WINDOW_TYPE_PRESENTER, pdfpcWindowPresenter))
#define PDFPC_WINDOW_PRESENTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_WINDOW_TYPE_PRESENTER, pdfpcWindowPresenterClass))
#define PDFPC_WINDOW_IS_PRESENTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_WINDOW_TYPE_PRESENTER))
#define PDFPC_WINDOW_IS_PRESENTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_WINDOW_TYPE_PRESENTER))
#define PDFPC_WINDOW_PRESENTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_WINDOW_TYPE_PRESENTER, pdfpcWindowPresenterClass))

typedef struct _pdfpcWindowPresenter pdfpcWindowPresenter;
typedef struct _pdfpcWindowPresenterClass pdfpcWindowPresenterClass;

#define PDFPC_TYPE_PRESENTATION_CONTROLLER (pdfpc_presentation_controller_get_type ())
#define PDFPC_PRESENTATION_CONTROLLER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_TYPE_PRESENTATION_CONTROLLER, pdfpcPresentationController))
#define PDFPC_PRESENTATION_CONTROLLER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_TYPE_PRESENTATION_CONTROLLER, pdfpcPresentationControllerClass))
#define PDFPC_IS_PRESENTATION_CONTROLLER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_TYPE_PRESENTATION_CONTROLLER))
#define PDFPC_IS_PRESENTATION_CONTROLLER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_TYPE_PRESENTATION_CONTROLLER))
#define PDFPC_PRESENTATION_CONTROLLER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_TYPE_PRESENTATION_CONTROLLER, pdfpcPresentationControllerClass))

typedef struct _pdfpcPresentationController pdfpcPresentationController;
typedef struct _pdfpcPresentationControllerClass pdfpcPresentationControllerClass;

#define PDFPC_TYPE_CACHE_STATUS (pdfpc_cache_status_get_type ())
#define PDFPC_CACHE_STATUS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_TYPE_CACHE_STATUS, pdfpcCacheStatus))
#define PDFPC_CACHE_STATUS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_TYPE_CACHE_STATUS, pdfpcCacheStatusClass))
#define PDFPC_IS_CACHE_STATUS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_TYPE_CACHE_STATUS))
#define PDFPC_IS_CACHE_STATUS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_TYPE_CACHE_STATUS))
#define PDFPC_CACHE_STATUS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_TYPE_CACHE_STATUS, pdfpcCacheStatusClass))

typedef struct _pdfpcCacheStatus pdfpcCacheStatus;
typedef struct _pdfpcCacheStatusClass pdfpcCacheStatusClass;
#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL)))
#define _pdfpc_cache_status_unref0(var) ((var == NULL) ? NULL : (var = (pdfpc_cache_status_unref (var), NULL)))
#define _g_option_context_free0(var) ((var == NULL) ? NULL : (var = (g_option_context_free (var), NULL)))
#define _g_free0(var) (var = (g_free (var), NULL))
#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL)))

#define PDFPC_METADATA_TYPE_BASE (pdfpc_metadata_base_get_type ())
#define PDFPC_METADATA_BASE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_METADATA_TYPE_BASE, pdfpcMetadataBase))
#define PDFPC_METADATA_BASE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_METADATA_TYPE_BASE, pdfpcMetadataBaseClass))
#define PDFPC_METADATA_IS_BASE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_METADATA_TYPE_BASE))
#define PDFPC_METADATA_IS_BASE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_METADATA_TYPE_BASE))
#define PDFPC_METADATA_BASE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_METADATA_TYPE_BASE, pdfpcMetadataBaseClass))

typedef struct _pdfpcMetadataBase pdfpcMetadataBase;
typedef struct _pdfpcMetadataBaseClass pdfpcMetadataBaseClass;

#define PDFPC_METADATA_TYPE_PDF (pdfpc_metadata_pdf_get_type ())
#define PDFPC_METADATA_PDF(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_METADATA_TYPE_PDF, pdfpcMetadataPdf))
#define PDFPC_METADATA_PDF_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_METADATA_TYPE_PDF, pdfpcMetadataPdfClass))
#define PDFPC_METADATA_IS_PDF(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_METADATA_TYPE_PDF))
#define PDFPC_METADATA_IS_PDF_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_METADATA_TYPE_PDF))
#define PDFPC_METADATA_PDF_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_METADATA_TYPE_PDF, pdfpcMetadataPdfClass))

typedef struct _pdfpcMetadataPdf pdfpcMetadataPdf;
typedef struct _pdfpcMetadataPdfClass pdfpcMetadataPdfClass;

#define PDFPC_TYPE_CONFIG_FILE_READER (pdfpc_config_file_reader_get_type ())
#define PDFPC_CONFIG_FILE_READER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_TYPE_CONFIG_FILE_READER, pdfpcConfigFileReader))
#define PDFPC_CONFIG_FILE_READER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PDFPC_TYPE_CONFIG_FILE_READER, pdfpcConfigFileReaderClass))
#define PDFPC_IS_CONFIG_FILE_READER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_TYPE_CONFIG_FILE_READER))
#define PDFPC_IS_CONFIG_FILE_READER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PDFPC_TYPE_CONFIG_FILE_READER))
#define PDFPC_CONFIG_FILE_READER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PDFPC_TYPE_CONFIG_FILE_READER, pdfpcConfigFileReaderClass))

typedef struct _pdfpcConfigFileReader pdfpcConfigFileReader;
typedef struct _pdfpcConfigFileReaderClass pdfpcConfigFileReaderClass;

#define PDFPC_TYPE_CONTROLLABLE (pdfpc_controllable_get_type ())
#define PDFPC_CONTROLLABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PDFPC_TYPE_CONTROLLABLE, pdfpcControllable))
#define PDFPC_IS_CONTROLLABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PDFPC_TYPE_CONTROLLABLE))
#define PDFPC_CONTROLLABLE_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), PDFPC_TYPE_CONTROLLABLE, pdfpcControllableIface))

typedef struct _pdfpcControllable pdfpcControllable;
typedef struct _pdfpcControllableIface pdfpcControllableIface;
#define _pdfpc_config_file_reader_unref0(var) ((var == NULL) ? NULL : (var = (pdfpc_config_file_reader_unref (var), NULL)))

struct _pdfpcApplication {
	GObject parent_instance;
	pdfpcApplicationPrivate * priv;
};

struct _pdfpcApplicationClass {
	GObjectClass parent_class;
};

struct _pdfpcApplicationPrivate {
	pdfpcWindowPresentation* presentation_window;
	pdfpcWindowPresenter* presenter_window;
	pdfpcPresentationController* controller;
	pdfpcCacheStatus* cache_status;
};

struct _pdfpcControllableIface {
	GTypeInterface parent_iface;
	pdfpcPresentationController* (*get_controller) (pdfpcControllable* self);
	void (*update) (pdfpcControllable* self);
	void (*edit_note) (pdfpcControllable* self);
	void (*ask_goto_page) (pdfpcControllable* self);
	void (*show_overview) (pdfpcControllable* self);
	void (*hide_overview) (pdfpcControllable* self);
};


static gpointer pdfpc_application_parent_class = NULL;
extern guint pdfpc_options_duration;
extern gchar* pdfpc_options_end_time;
extern guint pdfpc_options_last_minutes;
extern gchar* pdfpc_options_start_time;
extern guint pdfpc_options_current_size;
extern gint pdfpc_options_min_overview_width;
extern gboolean pdfpc_options_display_switch;
extern gboolean pdfpc_options_disable_caching;
extern gboolean pdfpc_options_disable_cache_compression;
extern gboolean pdfpc_options_black_on_end;
extern gboolean pdfpc_options_single_screen;
extern gboolean pdfpc_options_list_actions;
extern gboolean pdfpc_options_windowed;

GType pdfpc_application_get_type (void) G_GNUC_CONST;
GType pdfpc_window_fullscreen_get_type (void) G_GNUC_CONST;
GType pdfpc_window_presentation_get_type (void) G_GNUC_CONST;
GType pdfpc_window_presenter_get_type (void) G_GNUC_CONST;
GType pdfpc_presentation_controller_get_type (void) G_GNUC_CONST;
gpointer pdfpc_cache_status_ref (gpointer instance);
void pdfpc_cache_status_unref (gpointer instance);
GParamSpec* pdfpc_param_spec_cache_status (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags);
void pdfpc_value_set_cache_status (GValue* value, gpointer v_object);
void pdfpc_value_take_cache_status (GValue* value, gpointer v_object);
gpointer pdfpc_value_get_cache_status (const GValue* value);
GType pdfpc_cache_status_get_type (void) G_GNUC_CONST;
#define PDFPC_APPLICATION_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), PDFPC_TYPE_APPLICATION, pdfpcApplicationPrivate))
enum  {
	PDFPC_APPLICATION_DUMMY_PROPERTY
};
gchar* pdfpc_application_parse_command_line_options (pdfpcApplication* self, gchar** args, int args_length1);
GType pdfpc_metadata_base_get_type (void) G_GNUC_CONST;
GType pdfpc_metadata_pdf_get_type (void) G_GNUC_CONST;
static pdfpcWindowPresenter* pdfpc_application_create_presenter_window (pdfpcApplication* self, pdfpcMetadataPdf* metadata, gint monitor);
pdfpcWindowPresenter* pdfpc_window_presenter_new (pdfpcMetadataPdf* metadata, gint screen_num, pdfpcPresentationController* presentation_controller);
pdfpcWindowPresenter* pdfpc_window_presenter_construct (GType object_type, pdfpcMetadataPdf* metadata, gint screen_num, pdfpcPresentationController* presentation_controller);
void pdfpc_window_presenter_set_cache_observer (pdfpcWindowPresenter* self, pdfpcCacheStatus* observer);
static pdfpcWindowPresentation* pdfpc_application_create_presentation_window (pdfpcApplication* self, pdfpcMetadataPdf* metadata, gint monitor);
pdfpcWindowPresentation* pdfpc_window_presentation_new (pdfpcMetadataPdf* metadata, gint screen_num, pdfpcPresentationController* presentation_controller);
pdfpcWindowPresentation* pdfpc_window_presentation_construct (GType object_type, pdfpcMetadataPdf* metadata, gint screen_num, pdfpcPresentationController* presentation_controller);
void pdfpc_window_presentation_set_cache_observer (pdfpcWindowPresentation* self, pdfpcCacheStatus* observer);
void pdfpc_application_run (pdfpcApplication* self, gchar** args, int args_length1);
gchar** pdfpc_presentation_controller_getActionDescriptions (int* result_length1);
void pdfpc_mutex_locks_init (void);
pdfpcMetadataPdf* pdfpc_metadata_pdf_new (const gchar* fname);
pdfpcMetadataPdf* pdfpc_metadata_pdf_construct (GType object_type, const gchar* fname);
void pdfpc_metadata_pdf_set_duration (pdfpcMetadataPdf* self, guint d);
pdfpcPresentationController* pdfpc_presentation_controller_new (pdfpcMetadataPdf* metadata, gboolean allow_black_on_end);
pdfpcPresentationController* pdfpc_presentation_controller_construct (GType object_type, pdfpcMetadataPdf* metadata, gboolean allow_black_on_end);
pdfpcCacheStatus* pdfpc_cache_status_new (void);
pdfpcCacheStatus* pdfpc_cache_status_construct (GType object_type);
pdfpcConfigFileReader* pdfpc_config_file_reader_new (pdfpcPresentationController* controller);
pdfpcConfigFileReader* pdfpc_config_file_reader_construct (GType object_type, pdfpcPresentationController* controller);
gpointer pdfpc_config_file_reader_ref (gpointer instance);
void pdfpc_config_file_reader_unref (gpointer instance);
GParamSpec* pdfpc_param_spec_config_file_reader (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags);
void pdfpc_value_set_config_file_reader (GValue* value, gpointer v_object);
void pdfpc_value_take_config_file_reader (GValue* value, gpointer v_object);
gpointer pdfpc_value_get_config_file_reader (const GValue* value);
GType pdfpc_config_file_reader_get_type (void) G_GNUC_CONST;
void pdfpc_config_file_reader_readConfig (pdfpcConfigFileReader* self, const gchar* fname);
#define etc_path "/etc"
GType pdfpc_controllable_get_type (void) G_GNUC_CONST;
void pdfpc_controllable_update (pdfpcControllable* self);
gint pdfpc_application_main (gchar** args, int args_length1);
pdfpcApplication* pdfpc_application_new (void);
pdfpcApplication* pdfpc_application_construct (GType object_type);
static void pdfpc_application_finalize (GObject* obj);
static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func);
static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func);

static const GOptionEntry PDFPC_APPLICATION_options[14] = {{"duration", 'd', 0, G_OPTION_ARG_INT, &pdfpc_options_duration, "Duration in minutes of the presentation used for timer display.", "N"}, {"end-time", 'e', 0, G_OPTION_ARG_STRING, &pdfpc_options_end_time, "End time of the presentation. (Format: HH:MM (24h))", "T"}, {"last-minutes", 'l', 0, G_OPTION_ARG_INT, &pdfpc_options_last_minutes, "Time in minutes, from which on the timer changes its color. (Default 5" \
" minutes)", "N"}, {"start-time", 't', 0, G_OPTION_ARG_STRING, &pdfpc_options_start_time, "Start time of the presentation to be used as a countdown. (Format: HH:" \
"MM (24h))", "T"}, {"current-size", 'u', 0, G_OPTION_ARG_INT, &pdfpc_options_current_size, "Percentage of the presenter screen to be used for the current slide. (" \
"Default 60)", "N"}, {"overview-min-size", 'o', 0, G_OPTION_ARG_INT, &pdfpc_options_min_overview_width, "Minimum width for the overview miniatures, in pixels. (Default 150)", "N"}, {"switch-screens", 's', 0, 0, &pdfpc_options_display_switch, "Switch the presentation and the presenter screen.", NULL}, {"disable-cache", 'c', 0, 0, &pdfpc_options_disable_caching, "Disable caching and pre-rendering of slides to save memory at the cost" \
" of speed.", NULL}, {"disable-compression", 'z', 0, 0, &pdfpc_options_disable_cache_compression, "Disable the compression of slide images to trade memory consumption fo" \
"r speed. (Avg. factor 30)", NULL}, {"black-on-end", 'b', 0, 0, &pdfpc_options_black_on_end, "Add an additional black slide at the end of the presentation", NULL}, {"single-screen", 'S', 0, 0, &pdfpc_options_single_screen, "Force to use only one screen", NULL}, {"list-actions", 'L', 0, 0, &pdfpc_options_list_actions, "List actions supported in the config file(s)", NULL}, {"windowed", 'w', 0, 0, &pdfpc_options_windowed, "Run in windowed mode (devel tool)", NULL}, {NULL}};

/**
         * Parse the commandline and apply all found options to there according
         * static class members.
         *
 * Returns the name of the pdf file to open (or null if not present)
         */
gchar* pdfpc_application_parse_command_line_options (pdfpcApplication* self, gchar** args, int args_length1) {
	gchar* result = NULL;
	GOptionContext* _tmp0_;
	GOptionContext* context;
	gchar** _tmp7_;
	gint _tmp7__length1;
	GError * _inner_error_ = NULL;
	g_return_val_if_fail (self != NULL, NULL);
	_tmp0_ = g_option_context_new ("<pdf-file>");
	context = _tmp0_;
	g_option_context_add_main_entries (context, PDFPC_APPLICATION_options, NULL);
	{
		g_option_context_parse (context, &args_length1, &args, &_inner_error_);
		if (_inner_error_ != NULL) {
			if (_inner_error_->domain == G_OPTION_ERROR) {
				goto __catch0_g_option_error;
			}
			_g_option_context_free0 (context);
			g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code);
			g_clear_error (&_inner_error_);
			return NULL;
		}
	}
	goto __finally0;
	__catch0_g_option_error:
	{
		GError* e = NULL;
		FILE* _tmp1_;
		GError* _tmp2_;
		const gchar* _tmp3_;
		FILE* _tmp4_;
		gchar* _tmp5_ = NULL;
		gchar* _tmp6_;
		e = _inner_error_;
		_inner_error_ = NULL;
		_tmp1_ = stderr;
		_tmp2_ = e;
		_tmp3_ = _tmp2_->message;
		fprintf (_tmp1_, "\n%s\n\n", _tmp3_);
		_tmp4_ = stderr;
		_tmp5_ = g_option_context_get_help (context, TRUE, NULL);
		_tmp6_ = _tmp5_;
		fprintf (_tmp4_, "%s", _tmp6_);
		_g_free0 (_tmp6_);
		exit (1);
		_g_error_free0 (e);
	}
	__finally0:
	if (_inner_error_ != NULL) {
		_g_option_context_free0 (context);
		g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code);
		g_clear_error (&_inner_error_);
		return NULL;
	}
	_tmp7_ = args;
	_tmp7__length1 = args_length1;
	if (_tmp7__length1 < 2) {
		result = NULL;
		_g_option_context_free0 (context);
		return result;
	} else {
		gchar** _tmp8_;
		gint _tmp8__length1;
		const gchar* _tmp9_;
		gchar* _tmp10_;
		_tmp8_ = args;
		_tmp8__length1 = args_length1;
		_tmp9_ = _tmp8_[1];
		_tmp10_ = g_strdup (_tmp9_);
		result = _tmp10_;
		_g_option_context_free0 (context);
		return result;
	}
	_g_option_context_free0 (context);
}


/**
         * Create and return a PresenterWindow using the specified monitor
         * while displaying the given file
         */
static pdfpcWindowPresenter* pdfpc_application_create_presenter_window (pdfpcApplication* self, pdfpcMetadataPdf* metadata, gint monitor) {
	pdfpcWindowPresenter* result = NULL;
	pdfpcMetadataPdf* _tmp0_;
	gint _tmp1_;
	pdfpcPresentationController* _tmp2_;
	pdfpcWindowPresenter* _tmp3_;
	pdfpcWindowPresenter* _tmp4_;
	pdfpcWindowPresenter* presenter_window;
	pdfpcCacheStatus* _tmp5_;
	g_return_val_if_fail (self != NULL, NULL);
	g_return_val_if_fail (metadata != NULL, NULL);
	_tmp0_ = metadata;
	_tmp1_ = monitor;
	_tmp2_ = self->priv->controller;
	_tmp3_ = pdfpc_window_presenter_new (_tmp0_, _tmp1_, _tmp2_);
	_tmp4_ = g_object_ref_sink (_tmp3_);
	presenter_window = _tmp4_;
	_tmp5_ = self->priv->cache_status;
	pdfpc_window_presenter_set_cache_observer (presenter_window, _tmp5_);
	result = presenter_window;
	return result;
}


/**
         * Create and return a PresentationWindow using the specified monitor
         * while displaying the given file
         */
static pdfpcWindowPresentation* pdfpc_application_create_presentation_window (pdfpcApplication* self, pdfpcMetadataPdf* metadata, gint monitor) {
	pdfpcWindowPresentation* result = NULL;
	pdfpcMetadataPdf* _tmp0_;
	gint _tmp1_;
	pdfpcPresentationController* _tmp2_;
	pdfpcWindowPresentation* _tmp3_;
	pdfpcWindowPresentation* _tmp4_;
	pdfpcWindowPresentation* presentation_window;
	pdfpcCacheStatus* _tmp5_;
	g_return_val_if_fail (self != NULL, NULL);
	g_return_val_if_fail (metadata != NULL, NULL);
	_tmp0_ = metadata;
	_tmp1_ = monitor;
	_tmp2_ = self->priv->controller;
	_tmp3_ = pdfpc_window_presentation_new (_tmp0_, _tmp1_, _tmp2_);
	_tmp4_ = g_object_ref_sink (_tmp3_);
	presentation_window = _tmp4_;
	_tmp5_ = self->priv->cache_status;
	pdfpc_window_presentation_set_cache_observer (presentation_window, _tmp5_);
	result = presentation_window;
	return result;
}


/**
         * Main application function, which instantiates the windows and
         * initializes the Gtk system.
         */
static gpointer _g_object_ref0 (gpointer self) {
	return self ? g_object_ref (self) : NULL;
}


void pdfpc_application_run (pdfpcApplication* self, gchar** args, int args_length1) {
	FILE* _tmp0_;
	gchar** _tmp1_;
	gint _tmp1__length1;
	gchar* _tmp2_ = NULL;
	gchar* pdfFilename;
	gboolean _tmp3_;
	const gchar* _tmp28_;
	FILE* _tmp30_;
	const gchar* _tmp31_;
	pdfpcMetadataPdf* _tmp32_;
	pdfpcMetadataPdf* metadata;
	guint _tmp33_;
	pdfpcMetadataPdf* _tmp36_;
	gboolean _tmp37_;
	pdfpcPresentationController* _tmp38_;
	pdfpcCacheStatus* _tmp39_;
	pdfpcPresentationController* _tmp40_;
	pdfpcConfigFileReader* _tmp41_;
	pdfpcConfigFileReader* configFileReader;
	pdfpcConfigFileReader* _tmp42_;
	pdfpcConfigFileReader* _tmp43_;
	const gchar* _tmp44_ = NULL;
	gchar* _tmp45_;
	gchar* _tmp46_;
	GdkScreen* _tmp47_ = NULL;
	GdkScreen* _tmp48_;
	GdkScreen* screen;
	gboolean _tmp49_ = FALSE;
	gboolean _tmp50_ = FALSE;
	gboolean _tmp51_;
	gboolean _tmp53_;
	gboolean _tmp56_;
	pdfpcWindowPresentation* _tmp82_;
	pdfpcWindowPresenter* _tmp85_;
	g_return_if_fail (self != NULL);
	_tmp0_ = stdout;
	fprintf (_tmp0_, "%s", "pdfpc v3.0\n" "(C) 2012 David Vilar\n" "(C) 2009-2011 Jakob Westhoff\n\n");
	gdk_threads_init ();
	gtk_init (&args_length1, &args);
	_tmp1_ = args;
	_tmp1__length1 = args_length1;
	_tmp2_ = pdfpc_application_parse_command_line_options (self, _tmp1_, _tmp1__length1);
	pdfFilename = _tmp2_;
	_tmp3_ = pdfpc_options_list_actions;
	if (_tmp3_) {
		FILE* _tmp4_;
		gint _tmp5_ = 0;
		gchar** _tmp6_ = NULL;
		gchar** actions;
		gint actions_length1;
		gint _actions_size_;
		_tmp4_ = stdout;
		fprintf (_tmp4_, "Config file commands accepted by pdfpc:\n");
		_tmp6_ = pdfpc_presentation_controller_getActionDescriptions (&_tmp5_);
		actions = _tmp6_;
		actions_length1 = _tmp5_;
		_actions_size_ = actions_length1;
		{
			gint i;
			i = 0;
			{
				gboolean _tmp7_;
				_tmp7_ = TRUE;
				while (TRUE) {
					gboolean _tmp8_;
					gint _tmp10_;
					gchar** _tmp11_;
					gint _tmp11__length1;
					gchar* _tmp12_;
					gchar* tabAlignment;
					gchar** _tmp13_;
					gint _tmp13__length1;
					gint _tmp14_;
					const gchar* _tmp15_;
					gint _tmp16_;
					gint _tmp17_;
					FILE* _tmp20_;
					gchar** _tmp21_;
					gint _tmp21__length1;
					gint _tmp22_;
					const gchar* _tmp23_;
					const gchar* _tmp24_;
					gchar** _tmp25_;
					gint _tmp25__length1;
					gint _tmp26_;
					const gchar* _tmp27_;
					_tmp8_ = _tmp7_;
					if (!_tmp8_) {
						gint _tmp9_;
						_tmp9_ = i;
						i = _tmp9_ + 2;
					}
					_tmp7_ = FALSE;
					_tmp10_ = i;
					_tmp11_ = actions;
					_tmp11__length1 = actions_length1;
					if (!(_tmp10_ < _tmp11__length1)) {
						break;
					}
					_tmp12_ = g_strdup ("\t");
					tabAlignment = _tmp12_;
					_tmp13_ = actions;
					_tmp13__length1 = actions_length1;
					_tmp14_ = i;
					_tmp15_ = _tmp13_[_tmp14_];
					_tmp16_ = strlen (_tmp15_);
					_tmp17_ = _tmp16_;
					if (_tmp17_ < 8) {
						const gchar* _tmp18_;
						gchar* _tmp19_;
						_tmp18_ = tabAlignment;
						_tmp19_ = g_strconcat (_tmp18_, "\t", NULL);
						_g_free0 (tabAlignment);
						tabAlignment = _tmp19_;
					}
					_tmp20_ = stdout;
					_tmp21_ = actions;
					_tmp21__length1 = actions_length1;
					_tmp22_ = i;
					_tmp23_ = _tmp21_[_tmp22_];
					_tmp24_ = tabAlignment;
					_tmp25_ = actions;
					_tmp25__length1 = actions_length1;
					_tmp26_ = i;
					_tmp27_ = _tmp25_[_tmp26_ + 1];
					fprintf (_tmp20_, "\t%s%s=> %s\n", _tmp23_, _tmp24_, _tmp27_);
					_g_free0 (tabAlignment);
				}
			}
		}
		actions = (_vala_array_free (actions, actions_length1, (GDestroyNotify) g_free), NULL);
		_g_free0 (pdfFilename);
		return;
	}
	_tmp28_ = pdfFilename;
	if (_tmp28_ == NULL) {
		FILE* _tmp29_;
		_tmp29_ = stderr;
		fprintf (_tmp29_, "Error: No pdf file given\n");
		exit (1);
	}
	pdfpc_mutex_locks_init ();
	_tmp30_ = stdout;
	fprintf (_tmp30_, "Initializing rendering...\n");
	_tmp31_ = pdfFilename;
	_tmp32_ = pdfpc_metadata_pdf_new (_tmp31_);
	metadata = _tmp32_;
	_tmp33_ = pdfpc_options_duration;
	if (_tmp33_ != 987654321U) {
		pdfpcMetadataPdf* _tmp34_;
		guint _tmp35_;
		_tmp34_ = metadata;
		_tmp35_ = pdfpc_options_duration;
		pdfpc_metadata_pdf_set_duration (_tmp34_, _tmp35_);
	}
	_tmp36_ = metadata;
	_tmp37_ = pdfpc_options_black_on_end;
	_tmp38_ = pdfpc_presentation_controller_new (_tmp36_, _tmp37_);
	_g_object_unref0 (self->priv->controller);
	self->priv->controller = _tmp38_;
	_tmp39_ = pdfpc_cache_status_new ();
	_pdfpc_cache_status_unref0 (self->priv->cache_status);
	self->priv->cache_status = _tmp39_;
	_tmp40_ = self->priv->controller;
	_tmp41_ = pdfpc_config_file_reader_new (_tmp40_);
	configFileReader = _tmp41_;
	_tmp42_ = configFileReader;
	pdfpc_config_file_reader_readConfig (_tmp42_, etc_path "/pdfpcrc");
	_tmp43_ = configFileReader;
	_tmp44_ = g_get_home_dir ();
	_tmp45_ = g_strconcat (_tmp44_, "/.pdfpcrc", NULL);
	_tmp46_ = _tmp45_;
	pdfpc_config_file_reader_readConfig (_tmp43_, _tmp46_);
	_g_free0 (_tmp46_);
	_tmp47_ = gdk_screen_get_default ();
	_tmp48_ = _g_object_ref0 (_tmp47_);
	screen = _tmp48_;
	_tmp51_ = pdfpc_options_windowed;
	if (!_tmp51_) {
		gboolean _tmp52_;
		_tmp52_ = pdfpc_options_single_screen;
		_tmp50_ = !_tmp52_;
	} else {
		_tmp50_ = FALSE;
	}
	_tmp53_ = _tmp50_;
	if (_tmp53_) {
		GdkScreen* _tmp54_;
		gint _tmp55_ = 0;
		_tmp54_ = screen;
		_tmp55_ = gdk_screen_get_n_monitors (_tmp54_);
		_tmp49_ = _tmp55_ > 1;
	} else {
		_tmp49_ = FALSE;
	}
	_tmp56_ = _tmp49_;
	if (_tmp56_) {
		gint presenter_monitor = 0;
		gint presentation_monitor = 0;
		gboolean _tmp57_;
		gint _tmp62_;
		pdfpcMetadataPdf* _tmp63_;
		gint _tmp64_;
		pdfpcWindowPresentation* _tmp65_ = NULL;
		pdfpcMetadataPdf* _tmp66_;
		gint _tmp67_;
		pdfpcWindowPresenter* _tmp68_ = NULL;
		_tmp57_ = pdfpc_options_display_switch;
		if (_tmp57_ != TRUE) {
			GdkScreen* _tmp58_;
			gint _tmp59_ = 0;
			_tmp58_ = screen;
			_tmp59_ = gdk_screen_get_primary_monitor (_tmp58_);
			presenter_monitor = _tmp59_;
		} else {
			GdkScreen* _tmp60_;
			gint _tmp61_ = 0;
			_tmp60_ = screen;
			_tmp61_ = gdk_screen_get_primary_monitor (_tmp60_);
			presenter_monitor = (_tmp61_ + 1) % 2;
		}
		_tmp62_ = presenter_monitor;
		presentation_monitor = (_tmp62_ + 1) % 2;
		_tmp63_ = metadata;
		_tmp64_ = presentation_monitor;
		_tmp65_ = pdfpc_application_create_presentation_window (self, _tmp63_, _tmp64_);
		_g_object_unref0 (self->priv->presentation_window);
		self->priv->presentation_window = _tmp65_;
		_tmp66_ = metadata;
		_tmp67_ = presenter_monitor;
		_tmp68_ = pdfpc_application_create_presenter_window (self, _tmp66_, _tmp67_);
		_g_object_unref0 (self->priv->presenter_window);
		self->priv->presenter_window = _tmp68_;
	} else {
		gboolean _tmp69_ = FALSE;
		gboolean _tmp70_;
		gboolean _tmp72_;
		_tmp70_ = pdfpc_options_windowed;
		if (_tmp70_) {
			gboolean _tmp71_;
			_tmp71_ = pdfpc_options_single_screen;
			_tmp69_ = !_tmp71_;
		} else {
			_tmp69_ = FALSE;
		}
		_tmp72_ = _tmp69_;
		if (_tmp72_) {
			pdfpcMetadataPdf* _tmp73_;
			pdfpcWindowPresenter* _tmp74_ = NULL;
			pdfpcMetadataPdf* _tmp75_;
			pdfpcWindowPresentation* _tmp76_ = NULL;
			_tmp73_ = metadata;
			_tmp74_ = pdfpc_application_create_presenter_window (self, _tmp73_, -1);
			_g_object_unref0 (self->priv->presenter_window);
			self->priv->presenter_window = _tmp74_;
			_tmp75_ = metadata;
			_tmp76_ = pdfpc_application_create_presentation_window (self, _tmp75_, -1);
			_g_object_unref0 (self->priv->presentation_window);
			self->priv->presentation_window = _tmp76_;
		} else {
			gboolean _tmp77_;
			_tmp77_ = pdfpc_options_display_switch;
			if (!_tmp77_) {
				pdfpcMetadataPdf* _tmp78_;
				pdfpcWindowPresenter* _tmp79_ = NULL;
				_tmp78_ = metadata;
				_tmp79_ = pdfpc_application_create_presenter_window (self, _tmp78_, -1);
				_g_object_unref0 (self->priv->presenter_window);
				self->priv->presenter_window = _tmp79_;
			} else {
				pdfpcMetadataPdf* _tmp80_;
				pdfpcWindowPresentation* _tmp81_ = NULL;
				_tmp80_ = metadata;
				_tmp81_ = pdfpc_application_create_presentation_window (self, _tmp80_, -1);
				_g_object_unref0 (self->priv->presentation_window);
				self->priv->presentation_window = _tmp81_;
			}
		}
	}
	_tmp82_ = self->priv->presentation_window;
	if (_tmp82_ != NULL) {
		pdfpcWindowPresentation* _tmp83_;
		pdfpcWindowPresentation* _tmp84_;
		_tmp83_ = self->priv->presentation_window;
		gtk_widget_show_all ((GtkWidget*) _tmp83_);
		_tmp84_ = self->priv->presentation_window;
		pdfpc_controllable_update ((pdfpcControllable*) _tmp84_);
	}
	_tmp85_ = self->priv->presenter_window;
	if (_tmp85_ != NULL) {
		pdfpcWindowPresenter* _tmp86_;
		pdfpcWindowPresenter* _tmp87_;
		_tmp86_ = self->priv->presenter_window;
		gtk_widget_show_all ((GtkWidget*) _tmp86_);
		_tmp87_ = self->priv->presenter_window;
		pdfpc_controllable_update ((pdfpcControllable*) _tmp87_);
	}
	gdk_threads_enter ();
	gtk_main ();
	gdk_threads_leave ();
	_g_object_unref0 (screen);
	_pdfpc_config_file_reader_unref0 (configFileReader);
	_g_object_unref0 (metadata);
	_g_free0 (pdfFilename);
}


/**
         * Basic application entry point
         */
gint pdfpc_application_main (gchar** args, int args_length1) {
	gint result = 0;
	pdfpcApplication* _tmp0_;
	pdfpcApplication* application;
	gchar** _tmp1_;
	gint _tmp1__length1;
	_tmp0_ = pdfpc_application_new ();
	application = _tmp0_;
	_tmp1_ = args;
	_tmp1__length1 = args_length1;
	pdfpc_application_run (application, _tmp1_, _tmp1__length1);
	result = 0;
	_g_object_unref0 (application);
	return result;
}


int main (int argc, char ** argv) {
	g_type_init ();
	return pdfpc_application_main (argv, argc);
}


pdfpcApplication* pdfpc_application_construct (GType object_type) {
	pdfpcApplication * self = NULL;
	self = (pdfpcApplication*) g_object_new (object_type, NULL);
	return self;
}


pdfpcApplication* pdfpc_application_new (void) {
	return pdfpc_application_construct (PDFPC_TYPE_APPLICATION);
}


static void pdfpc_application_class_init (pdfpcApplicationClass * klass) {
	pdfpc_application_parent_class = g_type_class_peek_parent (klass);
	g_type_class_add_private (klass, sizeof (pdfpcApplicationPrivate));
	G_OBJECT_CLASS (klass)->finalize = pdfpc_application_finalize;
}


static void pdfpc_application_instance_init (pdfpcApplication * self) {
	self->priv = PDFPC_APPLICATION_GET_PRIVATE (self);
}


static void pdfpc_application_finalize (GObject* obj) {
	pdfpcApplication * self;
	self = PDFPC_APPLICATION (obj);
	_g_object_unref0 (self->priv->presentation_window);
	_g_object_unref0 (self->priv->presenter_window);
	_g_object_unref0 (self->priv->controller);
	_pdfpc_cache_status_unref0 (self->priv->cache_status);
	G_OBJECT_CLASS (pdfpc_application_parent_class)->finalize (obj);
}


/**
     * Pdf Presenter Console main application class
     *
     * This class contains the main method as well as all the logic needed for
     * initializing the application, like commandline parsing and window creation.
     */
GType pdfpc_application_get_type (void) {
	static volatile gsize pdfpc_application_type_id__volatile = 0;
	if (g_once_init_enter (&pdfpc_application_type_id__volatile)) {
		static const GTypeInfo g_define_type_info = { sizeof (pdfpcApplicationClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) pdfpc_application_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (pdfpcApplication), 0, (GInstanceInitFunc) pdfpc_application_instance_init, NULL };
		GType pdfpc_application_type_id;
		pdfpc_application_type_id = g_type_register_static (G_TYPE_OBJECT, "pdfpcApplication", &g_define_type_info, 0);
		g_once_init_leave (&pdfpc_application_type_id__volatile, pdfpc_application_type_id);
	}
	return pdfpc_application_type_id__volatile;
}


static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func) {
	if ((array != NULL) && (destroy_func != NULL)) {
		int i;
		for (i = 0; i < array_length; i = i + 1) {
			if (((gpointer*) array)[i] != NULL) {
				destroy_func (((gpointer*) array)[i]);
			}
		}
	}
}


static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func) {
	_vala_array_destroy (array, array_length, destroy_func);
	g_free (array);
}