~ubuntu-branches/ubuntu/vivid/debconf-kde/vivid-proposed

« back to all changes in this revision

Viewing changes to src/debconf.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klumpp
  • Date: 2013-07-16 18:24:06 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130716182406-dmc726jj05w7gquz
Tags: 0.3-1
* New upstream release: 0.3
* Change mail to my Debian address
* Bump standards version
* Add watch file
* Compile with pkgkde_symbolshelper
* Use canonical Git url

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
    void cmd_subst(const QString &param);
172
172
    void cmd_progress(const QString &param);
173
173
    void cmd_x_ping(const QString &param);
 
174
    void cmd_version(const QString &param);
 
175
    void cmd_x_loadtemplatefile(const QString &param);
 
176
    void cmd_info(const QString &param);
 
177
    void cmd_fget(const QString &param);
 
178
    void cmd_fset(const QString &param);
 
179
    void cmd_beginblock(const QString &param);
 
180
    void cmd_endblock(const QString &param);
 
181
    void cmd_stop(const QString &param);
174
182
    struct Cmd {
175
183
        const char *cmd;
176
184
        void (DebconfFrontend::*run)(const QString &);
187
195
 
188
196
    typedef QHash<PropertyKey, QString> Properties;
189
197
    typedef QHash<QString, QString> Substitutions;
 
198
    typedef QHash<QString, bool> Flags;
190
199
 
191
200
    QHash<QString, Properties>    m_data;
192
201
    QHash<QString, Substitutions> m_subst;
193
202
    QHash<QString, QString>       m_values;
 
203
    QHash<QString, Flags>         m_flags;
194
204
    QString m_title;
195
205
    QStringList m_input;
196
206
};