~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/ui/dialog/scriptdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __SCRIPTDIALOG_H__
2
 
#define __SCRIPTDIALOG_H__
3
 
/*
4
 
 * This dialog is for launching scripts whose main purpose if
 
1
/** @file
 
2
 * @brief Script dialog
 
3
 *
 
4
 * This dialog is for launching scripts whose main purpose is
5
5
 * the scripting of Inkscape itself.
6
 
 *
7
 
 * Authors:
 
6
 */
 
7
/* Authors:
8
8
 *   Bob Jamison
9
9
 *   Other dudes from The Inkscape Organization
10
10
 *
13
13
 * Released under GNU GPL, read the file 'COPYING' for more information
14
14
 */
15
15
 
 
16
#ifndef __SCRIPTDIALOG_H__
 
17
#define __SCRIPTDIALOG_H__
16
18
 
17
19
#include "ui/widget/panel.h"
18
20
#include "verbs.h"
35
37
     * Constructor
36
38
     */
37
39
    ScriptDialog() : 
38
 
     UI::Widget::Panel("", "dialogs.script", SP_VERB_DIALOG_SCRIPT)
 
40
     UI::Widget::Panel("", "/dialogs/script", SP_VERB_DIALOG_SCRIPT)
39
41
    {}
40
42
 
41
43
 
62
64
} //namespace UI
63
65
} //namespace Inkscape
64
66
 
65
 
 
66
 
 
67
 
 
68
67
#endif /* __DEBUGDIALOG_H__ */
69
68
 
 
69
/*
 
70
  Local Variables:
 
71
  mode:c++
 
72
  c-file-style:"stroustrup"
 
73
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
74
  indent-tabs-mode:nil
 
75
  fill-column:99
 
76
  End:
 
77
*/
 
78
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :