[gimp/wip/animation: 271/373] plug-ins: add a visual separator every second in the X-Sheet.
- From: Jehan Pagès <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/wip/animation: 271/373] plug-ins: add a visual separator every second in the X-Sheet.
- Date: Sat, 7 Oct 2017 02:17:30 +0000 (UTC)
commit 191b99400b1fca2e05a047c6a7426a123c2de098
Author: Jehan <jehan girinstud io>
Date: Mon Nov 14 00:15:57 2016 +0100
plug-ins: add a visual separator every second in the X-Sheet.
A little helper for animators.
plug-ins/animation-play/widgets/animation-xsheet.c | 23 ++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
---
diff --git a/plug-ins/animation-play/widgets/animation-xsheet.c
b/plug-ins/animation-play/widgets/animation-xsheet.c
index f79b44f..45d474d 100755
--- a/plug-ins/animation-play/widgets/animation-xsheet.c
+++ b/plug-ins/animation-play/widgets/animation-xsheet.c
@@ -308,12 +308,15 @@ animation_xsheet_reset_layout (AnimationXSheet *xsheet)
GtkWidget *frame;
GtkWidget *label;
GtkWidget *comment_field;
+ gdouble framerate;
GList *iter;
gint n_tracks;
gint n_frames;
gint i;
gint j;
+ framerate = animation_get_framerate (ANIMATION (xsheet->priv->animation));
+
gtk_container_foreach (GTK_CONTAINER (xsheet->priv->track_layout),
(GtkCallback) gtk_widget_destroy,
NULL);
@@ -356,6 +359,7 @@ animation_xsheet_reset_layout (AnimationXSheet *xsheet)
const gchar *comment;
gchar *num_str;
+ /* Position button. */
frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_OUT);
gtk_table_attach (GTK_TABLE (xsheet->priv->track_layout),
@@ -380,6 +384,25 @@ animation_xsheet_reset_layout (AnimationXSheet *xsheet)
gtk_widget_show (label);
gtk_widget_show (frame);
+ /* Separator line every second (with round framerate only). */
+ if (framerate == (gdouble) (gint) framerate &&
+ i != 0 &&
+ i % ((gint) framerate) == 0)
+ {
+ GtkWidget *align;
+ GtkWidget *separator;
+
+ align = gtk_alignment_new (0.5, 0.0, 1.0, 0.2);
+ gtk_table_attach (GTK_TABLE (xsheet->priv->track_layout),
+ align, 0, n_tracks * 9 + 6, i + 2, i + 3,
+ GTK_FILL, GTK_FILL, 0, 0);
+ gtk_widget_show (align);
+
+ separator = gtk_hseparator_new ();
+ gtk_container_add (GTK_CONTAINER (align), separator);
+ gtk_widget_show (separator);
+ }
+
for (j = 0; j < n_tracks; j++)
{
GtkWidget *cel;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]