~ubuntu-branches/ubuntu/saucy/ekiga/saucy

« back to all changes in this revision

Viewing changes to lib/engine/framework/form-dumper.h

  • Committer: Bazaar Package Importer
  • Author(s): Kilian Krause
  • Date: 2011-07-17 00:24:50 UTC
  • mfrom: (5.1.5 upstream) (7.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110717002450-ytg3wsrc1ptd3153
Tags: 3.3.1-1
* New upstream release.
 - Required libpt-dev 2.10 and libopal-dev 3.10
* Fix debian/watch to catch new version
* Remove libnotify0.7.patch - included upstream
* Add libboost-dev and libboost-signals-dev to Build-Depends
* debian/rules: Don't install *.la files for new internal shared libs
* Fix Vcs URIs to point to correct desktop/experimental/ekiga tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
/*
3
3
 * Ekiga -- A VoIP and Video-Conferencing application
4
 
 * Copyright (C) 2000-2007 Damien Sandras
 
4
 * Copyright (C) 2000-2009 Damien Sandras <dsandras@seconix.com>
5
5
 
6
6
 * This program is free software; you can  redistribute it and/or modify
7
7
 * it under the terms of the GNU General Public License as published by
61
61
 
62
62
    void instructions (const std::string );
63
63
 
64
 
    void error (const std::string );
 
64
    void link (const std::string link,
 
65
                       const std::string uri);
 
66
 
 
67
    void error (const std::string msg);
65
68
 
66
69
    void hidden (const std::string name,
67
70
                 const std::string value);
68
71
 
69
72
    void boolean (const std::string name,
70
73
                  const std::string description,
71
 
                  bool value);
 
74
                  bool value,
 
75
                  bool advanced);
72
76
 
73
77
    void text (const std::string name,
74
78
               const std::string description,
75
 
               const std::string value);
 
79
               const std::string value,
 
80
               bool advanced);
76
81
 
77
82
    void private_text (const std::string name,
78
83
                       const std::string description,
79
 
                       const std::string value);
 
84
                       const std::string value,
 
85
                       bool advanced);
80
86
 
81
87
    void multi_text (const std::string name,
82
88
                     const std::string description,
83
 
                     const std::string value);
 
89
                     const std::string value,
 
90
                     bool advanced);
84
91
 
85
92
    void single_choice (const std::string name,
86
93
                        const std::string description,
87
94
                        const std::string value,
88
 
                        const std::map<std::string, std::string> choices);
 
95
                        const std::map<std::string, std::string> choices,
 
96
                        bool advanced);
89
97
 
90
98
    void multiple_choice (const std::string name,
91
99
                          const std::string description,
92
100
                          const std::set<std::string> values,
93
 
                          const std::map<std::string, std::string> choices);
 
101
                          const std::map<std::string, std::string> choices,
 
102
                          bool advanced);
94
103
 
95
104
    void editable_set (const std::string name,
96
105
                       const std::string description,
97
 
                       const std::set<std::string> values);
 
106
                       const std::set<std::string> values,
 
107
                       const std::set<std::string> proposed_values,
 
108
                       bool advanced);
 
109
 
98
110
  private:
99
111
 
100
112
    std::ostream &out;