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

« back to all changes in this revision

Viewing changes to src/ui/dialog/export.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
 
/**
2
 
 * \brief Export dialog
3
 
 *
4
 
 * Authors:
5
 
 *   Bryce W. Harrington <bryce@bryceharrington.org>
6
 
 *
7
 
 * Copyright (C) 2004, 2005 Authors
8
 
 *
9
 
 * Released under GNU GPL.  Read the file 'COPYING' for more information.
10
 
 */
11
 
 
12
 
#ifndef INKSCAPE_UI_DIALOG_EXPORT_H
13
 
#define INKSCAPE_UI_DIALOG_EXPORT_H
14
 
 
15
 
#include <gtkmm/notebook.h>
16
 
#include <glibmm/i18n.h>
17
 
 
18
 
#include "ui/widget/panel.h"
19
 
#include "ui/widget/notebook-page.h"
20
 
 
21
 
using namespace Inkscape::UI::Widget;
22
 
 
23
 
namespace Inkscape {
24
 
namespace UI {
25
 
namespace Dialog {
26
 
 
27
 
class Export : public UI::Widget::Panel {
28
 
public:
29
 
    Export();
30
 
    virtual ~Export();
31
 
 
32
 
    static Export& getInstance() { return *new Export(); }
33
 
 
34
 
protected:
35
 
    Gtk::Notebook  _notebook;
36
 
 
37
 
    NotebookPage   _page_export;
38
 
 
39
 
private:
40
 
    Export(Export const &d);
41
 
    Export& operator=(Export const &d);
42
 
};
43
 
 
44
 
} // namespace Dialog
45
 
} // namespace UI
46
 
} // namespace Inkscape
47
 
 
48
 
#endif // INKSCAPE_UI_DIALOG_EXPORT_H
49
 
 
50
 
/*
51
 
  Local Variables:
52
 
  mode:c++
53
 
  c-file-style:"stroustrup"
54
 
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
55
 
  indent-tabs-mode:nil
56
 
  fill-column:99
57
 
  End:
58
 
*/
59
 
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :