summaryrefslogtreecommitdiff
path: root/examples/progressbar
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-05-26 13:15:40 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-05-26 13:15:40 -0400
commit2c192cf9989f4f962f0d5effa7fd1c9ee69579c2 (patch)
tree8bf644f34e78536334a342255aeaa748181e799f /examples/progressbar
parent76278811b6f9090bda7098b948f6a235ae1b3a2c (diff)
downloadgtk+-2c192cf9989f4f962f0d5effa7fd1c9ee69579c2.tar.gz
Cut deadwood
The old tutorial examples haven't been built in years, and are not useful to keep around in git unless somebody does the work to integrate them into the 'Getting started' section of the current docs.
Diffstat (limited to 'examples/progressbar')
-rw-r--r--examples/progressbar/Makefile14
-rw-r--r--examples/progressbar/progressbar.c198
2 files changed, 0 insertions, 212 deletions
diff --git a/examples/progressbar/Makefile b/examples/progressbar/Makefile
deleted file mode 100644
index 42e650c366..0000000000
--- a/examples/progressbar/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-
-CC = gcc
-
-CFLAGS = -Wall \
- -DG_DISABLE_DEPRECATED \
- -DGDK_DISABLE_DEPRECATED \
- -DGDK_PIXBUF_DISABLE_DEPRECATED \
- -DGTK_DISABLE_DEPRECATED
-
-progressbar: progressbar.c
- $(CC) progressbar.c -o progressbar $(CFLAGS) `pkg-config gtk+-2.0 --cflags --libs`
-
-clean:
- rm -f *.o progressbar
diff --git a/examples/progressbar/progressbar.c b/examples/progressbar/progressbar.c
deleted file mode 100644
index 37342ddec6..0000000000
--- a/examples/progressbar/progressbar.c
+++ /dev/null
@@ -1,198 +0,0 @@
-
-#include <gtk/gtk.h>
-
-typedef struct _ProgressData {
- GtkWidget *window;
- GtkWidget *pbar;
- int timer;
- gboolean activity_mode;
-} ProgressData;
-
-/* Update the value of the progress bar so that we get
- * some movement */
-static gboolean progress_timeout( gpointer data )
-{
- ProgressData *pdata = (ProgressData *)data;
- gdouble new_val;
-
- if (pdata->activity_mode)
- gtk_progress_bar_pulse (GTK_PROGRESS_BAR (pdata->pbar));
- else
- {
- /* Calculate the value of the progress bar using the
- * value range set in the adjustment object */
-
- new_val = gtk_progress_bar_get_fraction (GTK_PROGRESS_BAR (pdata->pbar)) + 0.01;
-
- if (new_val > 1.0)
- new_val = 0.0;
-
- /* Set the new value */
- gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (pdata->pbar), new_val);
- }
-
- /* As this is a timeout function, return TRUE so that it
- * continues to get called */
- return TRUE;
-}
-
-/* Callback that toggles the text display within the progress bar trough */
-static void toggle_show_text( GtkWidget *widget,
- ProgressData *pdata )
-{
- const gchar *text;
-
- text = gtk_progress_bar_get_text (GTK_PROGRESS_BAR (pdata->pbar));
- if (text && *text)
- gtk_progress_bar_set_text (GTK_PROGRESS_BAR (pdata->pbar), "");
- else
- gtk_progress_bar_set_text (GTK_PROGRESS_BAR (pdata->pbar), "some text");
-}
-
-/* Callback that toggles the activity mode of the progress bar */
-static void toggle_activity_mode( GtkWidget *widget,
- ProgressData *pdata )
-{
- pdata->activity_mode = !pdata->activity_mode;
- if (pdata->activity_mode)
- gtk_progress_bar_pulse (GTK_PROGRESS_BAR (pdata->pbar));
- else
- gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (pdata->pbar), 0.0);
-}
-
-
-/* Callback that toggles the orientation of the progress bar */
-static void toggle_orientation( GtkWidget *widget,
- ProgressData *pdata )
-{
- switch (gtk_progress_bar_get_orientation (GTK_PROGRESS_BAR (pdata->pbar))) {
- case GTK_PROGRESS_LEFT_TO_RIGHT:
- gtk_progress_bar_set_orientation (GTK_PROGRESS_BAR (pdata->pbar),
- GTK_PROGRESS_RIGHT_TO_LEFT);
- break;
- case GTK_PROGRESS_RIGHT_TO_LEFT:
- gtk_progress_bar_set_orientation (GTK_PROGRESS_BAR (pdata->pbar),
- GTK_PROGRESS_LEFT_TO_RIGHT);
- break;
- default:;
- /* do nothing */
- }
-}
-
-
-/* Clean up allocated memory and remove the timer */
-static void destroy_progress( GtkWidget *widget,
- ProgressData *pdata)
-{
- g_source_remove (pdata->timer);
- pdata->timer = 0;
- pdata->window = NULL;
- g_free (pdata);
- gtk_main_quit ();
-}
-
-int main( int argc,
- char *argv[])
-{
- ProgressData *pdata;
- GtkWidget *align;
- GtkWidget *separator;
- GtkWidget *table;
- GtkWidget *button;
- GtkWidget *check;
- GtkWidget *vbox;
-
- gtk_init (&argc, &argv);
-
- /* Allocate memory for the data that is passed to the callbacks */
- pdata = g_malloc (sizeof (ProgressData));
-
- pdata->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- gtk_window_set_resizable (GTK_WINDOW (pdata->window), TRUE);
-
- g_signal_connect (G_OBJECT (pdata->window), "destroy",
- G_CALLBACK (destroy_progress),
- (gpointer) pdata);
- gtk_window_set_title (GTK_WINDOW (pdata->window), "GtkProgressBar");
- gtk_container_set_border_width (GTK_CONTAINER (pdata->window), 0);
-
- vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 5);
- gtk_container_set_border_width (GTK_CONTAINER (vbox), 10);
- gtk_container_add (GTK_CONTAINER (pdata->window), vbox);
- gtk_widget_show (vbox);
-
- /* Create a centering alignment object */
- align = gtk_alignment_new (0.5, 0.5, 0, 0);
- gtk_box_pack_start (GTK_BOX (vbox), align, FALSE, FALSE, 5);
- gtk_widget_show (align);
-
- /* Create the GtkProgressBar */
- pdata->pbar = gtk_progress_bar_new ();
- pdata->activity_mode = FALSE;
-
- gtk_container_add (GTK_CONTAINER (align), pdata->pbar);
- gtk_widget_show (pdata->pbar);
-
- /* Add a timer callback to update the value of the progress bar */
- pdata->timer = gdk_threads_add_timeout (100, progress_timeout, pdata);
-
- separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL);
- gtk_box_pack_start (GTK_BOX (vbox), separator, FALSE, FALSE, 0);
- gtk_widget_show (separator);
-
- /* rows, columns, homogeneous */
- table = gtk_table_new (2, 3, FALSE);
- gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, TRUE, 0);
- gtk_widget_show (table);
-
- /* Add a check button to select displaying of the trough text */
- check = gtk_check_button_new_with_label ("Show text");
- gtk_table_attach (GTK_TABLE (table), check, 0, 1, 0, 1,
- GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL,
- 5, 5);
- g_signal_connect (G_OBJECT (check), "clicked",
- G_CALLBACK (toggle_show_text),
- (gpointer) pdata);
- gtk_widget_show (check);
-
- /* Add a check button to toggle activity mode */
- check = gtk_check_button_new_with_label ("Activity mode");
- gtk_table_attach (GTK_TABLE (table), check, 0, 1, 1, 2,
- GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL,
- 5, 5);
- g_signal_connect (G_OBJECT (check), "clicked",
- G_CALLBACK (toggle_activity_mode),
- (gpointer) pdata);
- gtk_widget_show (check);
-
- /* Add a check button to toggle orientation */
- check = gtk_check_button_new_with_label ("Right to Left");
- gtk_table_attach (GTK_TABLE (table), check, 0, 1, 2, 3,
- GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL,
- 5, 5);
- g_signal_connect (G_OBJECT (check), "clicked",
- G_CALLBACK (toggle_orientation),
- (gpointer) pdata);
- gtk_widget_show (check);
-
- /* Add a button to exit the program */
- button = gtk_button_new_with_label ("close");
- g_signal_connect_swapped (G_OBJECT (button), "clicked",
- G_CALLBACK (gtk_widget_destroy),
- G_OBJECT (pdata->window));
- gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
-
- /* This makes it so the button is the default. */
- gtk_widget_set_can_default (button, TRUE);
-
- /* This grabs this button to be the default button. Simply hitting
- * the "Enter" key will cause this button to activate. */
- gtk_widget_grab_default (button);
- gtk_widget_show (button);
-
- gtk_widget_show (pdata->window);
-
- gtk_main ();
-
- return 0;
-}