-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtk_timeline.h
executable file
·83 lines (70 loc) · 3.12 KB
/
gtk_timeline.h
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
/*
* Copyright (c) 2021-2024 Giuseppe Torelli <colossus73@gmail.com>
* *
* 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
* the Free Software Foundation; either version 2 of the License,or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not,write to the Free Software
* Foundation,Inc.,59 Temple Place - Suite 330,Boston,MA 02111-1307,USA.
*
*/
#ifndef __GTK_TIMELINE_H__
#define __GTK_TIMELINE_H__
#include <gtk/gtk.h>
G_BEGIN_DECLS
struct _ImgTimeline
{
/*< private >*/
GtkLayout da;
};
enum
{
PROP_0,
VIDEO_BACKGROUND,
AUDIO_BACKGROUND,
TOTAL_TIME,
TIME_MARKER_POS,
N_PROPERTIES
};
enum
{
SIGNAL_TIME_CHANGED,
N_SIGNALS
};
#define GTK_TIMELINE_TYPE gtk_timeline_get_type()
G_DECLARE_FINAL_TYPE(ImgTimeline, gtk_timeline, GTK, TIMELINE, GtkLayout)
#define TIMELINE_TYPE_HANDLE (timeline_handle_get_type())
#define TIMELINE_HANDLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), TIMELINE_TYPE_HANDLE, TimelineHandle))
#define TIMELINE_IS_HANDLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), TIMELINE_TYPE_HANDLE))
#define TIMELINE_HANDLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), TIMELINE_TYPE_HANDLE, TimelineHandleClass))
#define TIMELINE_IS_HANDLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), TIMELINE_TYPE_HANDLE))
#define TIMELINE_HANDLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), TIMELINE_TYPE_HANDLE, TimelineHandleClass))
//Public functions.
GtkWidget* gtk_timeline_new();
//Set and get colors.
void gtk_timeline_set_video_background (ImgTimeline *, const gchar *);
void gtk_timeline_set_audio_background (ImgTimeline *, const gchar *);
void gtk_timeline_adjust_zoom (GtkWidget *, gint , gint );
void gtk_timeline_adjust_marker_posx (GtkWidget *, gint );
void gtk_timeline_set_total_time (ImgTimeline *, gint );
void gtk_timeline_add_media (GtkWidget *, gchar *filename, gint );
void gtk_timeline_draw_time_marker (GtkWidget *, cairo_t *, gint );
void gtk_timeline_set_time_marker (ImgTimeline *, gint );
gboolean gtk_timeline_scroll( GtkWidget *widget, GdkEventScroll *event, GtkWidget * );
void gtk_timeline_drag_data_received (GtkWidget *, GdkDragContext *, gint , gint , GtkSelectionData *, guint , guint , gpointer );
gboolean gtk_timeline_motion_notify(GtkWidget *, GdkEventMotion *event, ImgTimeline *);
gboolean gtk_timeline_mouse_button_press (GtkWidget *, GdkEvent *event, ImgTimeline *);
gboolean gtk_timeline_slide_button_press_event (GtkWidget *, GdkEventButton *event, ImgTimeline *);
gboolean gtk_timeline_slide_button_release_event (GtkWidget *, GdkEventButton *event, ImgTimeline *);
gboolean gtk_timeline_slide_motion(GtkWidget *, GdkEventCrossing *, ImgTimeline *);
GtkWidget *gtk_timeline_private_get_slide_selected(ImgTimeline *);
G_END_DECLS
#endif