~isantop/system76-driver/pkexec

« back to all changes in this revision

Viewing changes to src/callbacks.c

  • Committer: Carl Richell
  • Date: 2007-05-29 03:36:10 UTC
  • Revision ID: carl@system76.com-20070529033610-9qeih4btk1oxo6sj
initial bazaar revision - System76 Driver 2.0.4

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 "callbacks.h"
 
8
#include "interface.h"
 
9
#include "support.h"
 
10
 
 
11
 
 
12
void
 
13
on_mainWindow_destroy                  (GtkObject       *object,
 
14
                                        gpointer         user_data)
 
15
{
 
16
 
 
17
}
 
18
 
 
19
 
 
20
void
 
21
on_about_clicked                       (GtkButton       *button,
 
22
                                        gpointer         user_data)
 
23
{
 
24
 
 
25
}
 
26
 
 
27
 
 
28
void
 
29
on_close_clicked                       (GtkButton       *button,
 
30
                                        gpointer         user_data)
 
31
{
 
32
 
 
33
}
 
34
 
 
35
 
 
36
void
 
37
on_driverInstall_clicked               (GtkButton       *button,
 
38
                                        gpointer         user_data)
 
39
{
 
40
 
 
41
}
 
42
 
 
43
 
 
44
void
 
45
on_restore_clicked                     (GtkButton       *button,
 
46
                                        gpointer         user_data)
 
47
{
 
48
 
 
49
}
 
50