~ubuntu-branches/ubuntu/breezy/tiemu/breezy

« back to all changes in this revision

Viewing changes to src/gui/gtk/pgmentbkpt_cb.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien BLACHE
  • Date: 2005-06-02 16:50:15 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050602165015-59ab24414tl2wzol
Tags: 1.99+svn1460-1
* New snapshot.
* debian/control:
  + Updated build-depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifdef HAVE_CONFIG_H
2
 
#  include <config.h>
3
 
#endif
4
 
 
5
 
#include <gtk/gtk.h>
6
 
 
7
 
#include "pgmentbkpt_cb.h"
8
 
#include "pgmentbkpt_dbox.h"
9
 
#include "support.h"
10
 
 
11
 
#include "ticalc.h"
12
 
#include "main.h"
13
 
 
14
 
gint display_pgmentrybkpt_dbox (void)
15
 
{
16
 
  gtk_widget_show_all(create_pgmentrybkpt_dbox());
17
 
  return 0;
18
 
}
19
 
 
20
 
void
21
 
on_pgmentrybkpt_dbox_destroy           (GtkObject       *object,
22
 
                                        gpointer         user_data)
23
 
{
24
 
  unhalt();
25
 
}
26
 
 
27
 
 
28
 
void
29
 
on_button21_clicked                    (GtkButton       *button,
30
 
                                        gpointer         user_data)
31
 
{
32
 
  gtk_widget_destroy(user_data);
33
 
}
34
 
 
35
 
 
36
 
void
37
 
on_button22_enter                      (GtkButton       *button,
38
 
                                        gpointer         user_data)
39
 
{
40
 
  gtk_widget_destroy(user_data);
41
 
}
42
 
 
43