~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/dialogs/dialog-events.h

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __DIALOG_EVENTS_H__
2
 
#define __DIALOG_EVENTS_H__
3
 
 
4
 
/**
5
 
 * \brief  Event handler for dialog windows
6
 
 *
7
 
 * Authors:
 
1
/** @file
 
2
 * @brief  Event handler for dialog windows
 
3
 */
 
4
/* Authors:
8
5
 *   bulia byak <bulia@dr.com>
9
6
 *
10
7
 * Copyright (C) 2003 authors
12
9
 * Released under GNU GPL, read the file 'COPYING' for more information
13
10
 */
14
11
 
 
12
#ifndef __DIALOG_EVENTS_H__
 
13
#define __DIALOG_EVENTS_H__
 
14
 
15
15
#include <gtk/gtkstyle.h>
16
16
#include <gtk/gtkwindow.h>
17
17
#include <forward.h>
31
31
}
32
32
 
33
33
typedef struct { 
34
 
  GtkWidget *win;
35
 
  guint stop;
 
34
    GtkWidget *win;
 
35
    guint stop;
36
36
} win_data;
37
37
 
38
38