~simdgenius/inkscape/my2

« back to all changes in this revision

Viewing changes to src/extension/param/enum.h

  • Committer: Yale Zhang
  • Date: 2017-09-24 12:08:18 UTC
  • mfrom: (15617.1.123 inkscape)
  • Revision ID: yzhang1985@gmail.com-20170924120818-jjpv7rgk55hoozr1
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
public:
40
40
    ParamComboBox(const gchar * name,
41
 
                  const gchar * guitext,
42
 
                  const gchar * desc,
43
 
                  const Parameter::_scope_t scope,
44
 
                  bool gui_hidden,
45
 
                  const gchar * gui_tip,
 
41
                  const gchar * text,
 
42
                  const gchar * description,
 
43
                  bool hidden,
46
44
                  int indent,
47
45
                  Inkscape::Extension::Extension * ext,
48
46
                  Inkscape::XML::Node * xml);
60
58
    const gchar * set (const gchar * in, SPDocument * doc, Inkscape::XML::Node * node);
61
59
 
62
60
    /**
63
 
     * @returns true if guitext is part of this enum
 
61
     * @returns true if text is part of this enum
64
62
     */
65
 
    bool contains(const gchar * guitext, SPDocument const * /*doc*/, Inkscape::XML::Node const * /*node*/) const;
 
63
    bool contains(const gchar * text, SPDocument const * /*doc*/, Inkscape::XML::Node const * /*node*/) const;
66
64
 
67
65
    void changed (void);
68
66
}; /* class ParamComboBox */