~ubuntu-branches/ubuntu/jaunty/ekiga/jaunty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2008-12-07 10:30:45 UTC
  • mfrom: (1.2.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20081207103045-iaurrjo4p7d1nngo
Tags: 3.0.1-1ubuntu1
* Merge to Debian experimental, to get Ekiga 3. (LP: #274085) Remaining
  Ubuntu changes:
  - Launchpad Integration: (Ubuntu specific)
    + debian/control.in: Add liblaunchpad-integration-dev build dependency.
    + Add ubuntu_lpi.patch: Call launchpad_integration_add_items() in main() and
      check for the launchpad-integration pkg-config module.
    + Add autoconf.patch: autoconf changes from above patch.
  - Add ubuntu_desktop-file-onlyshowin.patch: Show ekiga in Mobile, too.
    (Ubuntu specific).
  - debian/control.in: Add missing fdupes build dependency for identical
    GNOME help file symlinking. (Debian #505536)
* Drop 42_change_pixmaps.dpatch: Many of the old icons do not exist any
  more, some have been replaced, and keeping the remaining three would make
  them look very inconsistent.
* Convert our dpatches to quilt patches and rewrite them for new upstream
  version.
* Add migrate_2.0_settings.patch: Properly migrate settings from
  2.0. Taken from upstream SVN, thanks to Damien Sandras!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * Ekiga -- A VoIP and Video-Conferencing application
 
4
 * Copyright (C) 2000-2007 Damien Sandras
 
5
 
 
6
 * This program is free software; you can  redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or (at
 
9
 * your option) any later version. This program is distributed in the hope
 
10
 * that it will be useful, but WITHOUT ANY WARRANTY; without even the
 
11
 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
12
 * See the GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License along
 
15
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 *
 
18
 * Ekiga is licensed under the GPL license and as a special exception, you
 
19
 * have permission to link or otherwise combine this program with the
 
20
 * programs OPAL, OpenH323 and PWLIB, and distribute the combination, without
 
21
 * applying the requirements of the GNU GPL to the OPAL, OpenH323 and PWLIB
 
22
 * programs, as long as you do follow the requirements of the GNU GPL for all
 
23
 * the rest of the software thus combined.
 
24
 */
 
25
 
 
26
 
 
27
/*
 
28
 *                         form-dumper.cpp  -  description
 
29
 *                         ------------------------------------------
 
30
 *   begin                : written in 2007 by Julien Puydt
 
31
 *   copyright            : (c) 2007 by Julien Puydt
 
32
 *   description          : implementation of an object which prints forms
 
33
 *
 
34
 */
 
35
 
 
36
#include "form-dumper.h"
 
37
 
 
38
Ekiga::FormDumper::FormDumper (std::ostream &_out): out(_out)
 
39
{
 
40
}
 
41
 
 
42
void
 
43
Ekiga::FormDumper::dump (const Ekiga::Form &form)
 
44
{
 
45
  form.visit (*this);
 
46
}
 
47
 
 
48
void
 
49
Ekiga::FormDumper::title (const std::string _title)
 
50
{
 
51
  out << "Title: " << _title << std::endl;
 
52
}
 
53
 
 
54
void
 
55
Ekiga::FormDumper::instructions (const std::string _instructions)
 
56
{
 
57
  out << "Instructions: " << std::endl << _instructions << std::endl;
 
58
}
 
59
 
 
60
void
 
61
Ekiga::FormDumper::error (const std::string _error)
 
62
{
 
63
  out << "Error: " << _error << std::endl;
 
64
}
 
65
 
 
66
void
 
67
Ekiga::FormDumper::hidden (const std::string name,
 
68
                           const std::string value)
 
69
{
 
70
  out << "Hidden field " << name << ": " << value << std::endl;
 
71
}
 
72
 
 
73
void
 
74
Ekiga::FormDumper::boolean (const std::string name,
 
75
                            const std::string description,
 
76
                            bool value)
 
77
{
 
78
  out << "Boolean field " << name
 
79
      << " (default value: ";
 
80
  if (value)
 
81
    out << "true";
 
82
  else
 
83
    out << "false";
 
84
  out << "):" << std::endl
 
85
      << description << std::endl;
 
86
}
 
87
 
 
88
void
 
89
Ekiga::FormDumper::text (const std::string name,
 
90
                         const std::string description,
 
91
                         const std::string value)
 
92
{
 
93
  out << "Text field " << name
 
94
      << " (default value: " << value << "): " << std::endl
 
95
      << description << std::endl;
 
96
}
 
97
 
 
98
void
 
99
Ekiga::FormDumper::private_text (const std::string name,
 
100
                                 const std::string description,
 
101
                                 const std::string value)
 
102
{
 
103
  out << "Private text field " << name
 
104
      << " (default value: " << value << "): " << std::endl
 
105
      << description << std::endl;
 
106
}
 
107
 
 
108
void
 
109
Ekiga::FormDumper::multi_text (const std::string name,
 
110
                               const std::string description,
 
111
                               const std::string value)
 
112
{
 
113
  out << "Multiline text field " << name
 
114
      << " (default value: " << value << "): " << std::endl
 
115
      << description << std::endl;
 
116
}
 
117
 
 
118
void
 
119
Ekiga::FormDumper::single_choice (const std::string name,
 
120
                                  const std::string description,
 
121
                                  const std::string value,
 
122
                                  const std::map<std::string, std::string> choices)
 
123
{
 
124
  out << "Single choice list " << name
 
125
      << " (default choice: " << value << "): " << std::endl
 
126
      << description << std::endl
 
127
      << "where choices are :" << std::endl;
 
128
  for (std::map<std::string, std::string>::const_iterator iter = choices.begin ();
 
129
       iter != choices.end ();
 
130
       iter++)
 
131
    out << "(" << iter->first << ", " << iter->second << ")" << std::endl;
 
132
}
 
133
 
 
134
void
 
135
Ekiga::FormDumper::multiple_choice (const std::string name,
 
136
                                    const std::string description,
 
137
                                    const std::set<std::string> values,
 
138
                                    const std::map<std::string, std::string> choices)
 
139
{
 
140
  out << "Multiple choice list " << name << ":" << std::endl
 
141
      << description << std::endl
 
142
      << "where choices are :" << std::endl;
 
143
  for (std::map<std::string, std::string>::const_iterator iter = choices.begin ();
 
144
       iter != choices.end ();
 
145
       iter++) {
 
146
 
 
147
    out << "(" << iter->first << ", " << iter->second << ")";
 
148
 
 
149
    if (values.find (iter->first) != values.end ())
 
150
      out << " (V)" << std::endl;
 
151
    else
 
152
      out << " (X)" << std::endl;
 
153
  }
 
154
}
 
155
 
 
156
void
 
157
Ekiga::FormDumper::editable_set (const std::string name,
 
158
                                 const std::string description,
 
159
                                 const std::set<std::string> values)
 
160
{
 
161
  out << "Editable list " << name << ":" << std::endl
 
162
      << description << std::endl
 
163
      << "where current set is :" << std::endl;
 
164
  for (std::set<std::string>::const_iterator iter = values.begin ();
 
165
       iter != values.end ();
 
166
       iter++)
 
167
    out << *iter << std::endl;
 
168
}