/usr/include/gtkmm-3.0/gtkmm/iconsource.h is in libgtkmm-3.0-dev 3.10.1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | // -*- c++ -*-
// Generated by gmmproc 2.38.0 -- DO NOT MODIFY!
#ifndef _GTKMM_ICONSOURCE_H
#define _GTKMM_ICONSOURCE_H
#ifndef GTKMM_DISABLE_DEPRECATED
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/*
* Copyright (C) 1998-2002 The gtkmm Development Team
*
* This library is free software, ) you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, ) either
* version 2.1 of the License, or(at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY, ) without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library, ) if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <gdkmm/pixbuf.h>
#include <gtkmm/enums.h>
// This whole file is deprecated.
#ifndef DOXYGEN_SHOULD_SKIP_THIS
extern "C" { typedef struct _GtkIconSource GtkIconSource; }
#endif
namespace Gtk
{
/** @deprecated Use Gtk::IconTheme instead.
*/
class IconSource
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef IconSource CppObjectType;
typedef GtkIconSource BaseObjectType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
IconSource();
explicit IconSource(GtkIconSource* gobject, bool make_a_copy = true);
IconSource(const IconSource& other);
IconSource& operator=(const IconSource& other);
~IconSource();
void swap(IconSource& other);
///Provides access to the underlying C instance.
GtkIconSource* gobj() { return gobject_; }
///Provides access to the underlying C instance.
const GtkIconSource* gobj() const { return gobject_; }
///Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs.
GtkIconSource* gobj_copy() const;
protected:
GtkIconSource* gobject_;
private:
public:
/** Sets the name of an image file to use as a base image when creating
* icon variants for Gtk::IconSet. The filename must be absolute.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param filename Image file to use.
*/
void set_filename(const Glib::ustring& filename);
/** Sets a pixbuf to use as a base image when creating icon variants
* for Gtk::IconSet.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param pixbuf Pixbuf to use as a source.
*/
void set_pixbuf(const Glib::RefPtr<Gdk::Pixbuf>& pixbuf);
/** Retrieves the source filename, or <tt>0</tt> if none is set. The
* filename is not a copy, and should not be modified or expected to
* persist beyond the lifetime of the icon source.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return Image filename. This string must not
* be modified or freed.
*/
Glib::ustring get_filename() const;
/** Retrieves the source pixbuf, or <tt>0</tt> if none is set.
* In addition, if a filename source is in use, this
* function in some cases will return the pixbuf from
* loaded from the filename. This is, for example, true
* for the GtkIconSource passed to the GtkStyle::render_icon()
* virtual function. The reference count on the pixbuf is
* not incremented.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return Source pixbuf.
*/
Glib::RefPtr<Gdk::Pixbuf> get_pixbuf();
/** Retrieves the source pixbuf, or <tt>0</tt> if none is set.
* In addition, if a filename source is in use, this
* function in some cases will return the pixbuf from
* loaded from the filename. This is, for example, true
* for the GtkIconSource passed to the GtkStyle::render_icon()
* virtual function. The reference count on the pixbuf is
* not incremented.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return Source pixbuf.
*/
Glib::RefPtr<const Gdk::Pixbuf> get_pixbuf() const;
/** If the text direction is wildcarded, this source can be used
* as the base image for an icon in any Gtk::TextDirection.
* If the text direction is not wildcarded, then the
* text direction the icon source applies to should be set
* with set_direction(), and the icon source
* will only be used with that text direction.
*
* Gtk::IconSet prefers non-wildcarded sources (exact matches) over
* wildcarded sources, and will use an exact match when possible.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param setting <tt>true</tt> to wildcard the text direction.
*/
void set_direction_wildcarded(bool setting = true);
/** If the widget state is wildcarded, this source can be used as the
* base image for an icon in any Gtk::StateType. If the widget state
* is not wildcarded, then the state the source applies to should be
* set with set_state() and the icon source will
* only be used with that specific state.
*
* Gtk::IconSet prefers non-wildcarded sources (exact matches) over
* wildcarded sources, and will use an exact match when possible.
*
* Gtk::IconSet will normally transform wildcarded source images to
* produce an appropriate icon for a given state, for example
* lightening an image on prelight, but will not modify source images
* that match exactly.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param setting <tt>true</tt> to wildcard the widget state.
*/
void set_state_wildcarded(bool setting = true);
/** If the icon size is wildcarded, this source can be used as the base
* image for an icon of any size. If the size is not wildcarded, then
* the size the source applies to should be set with
* set_size() and the icon source will only be used
* with that specific size.
*
* Gtk::IconSet prefers non-wildcarded sources (exact matches) over
* wildcarded sources, and will use an exact match when possible.
*
* Gtk::IconSet will normally scale wildcarded source images to produce
* an appropriate icon at a given size, but will not change the size
* of source images that match exactly.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param setting <tt>true</tt> to wildcard the widget state.
*/
void set_size_wildcarded(bool setting = true);
/** Gets the value set by set_size_wildcarded().
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return <tt>true</tt> if this icon source is a base for any icon size variant.
*/
bool get_size_wildcarded() const;
/** Gets the value set by set_state_wildcarded().
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return <tt>true</tt> if this icon source is a base for any widget state variant.
*/
bool get_state_wildcarded() const;
/** Gets the value set by set_direction_wildcarded().
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return <tt>true</tt> if this icon source is a base for any text direction variant.
*/
bool get_direction_wildcarded() const;
/** Sets the text direction this icon source is intended to be used
* with.
*
* Setting the text direction on an icon source makes no difference
* if the text direction is wildcarded. Therefore, you should usually
* call set_direction_wildcarded() to un-wildcard it
* in addition to calling this function.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param direction Text direction this source applies to.
*/
void set_direction(TextDirection direction);
/** Sets the widget state this icon source is intended to be used
* with.
*
* Setting the widget state on an icon source makes no difference
* if the state is wildcarded. Therefore, you should usually
* call set_state_wildcarded() to un-wildcard it
* in addition to calling this function.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param state Widget state this source applies to.
*/
void set_state(Gtk::StateType state);
/** Sets the icon size this icon source is intended to be used
* with.
*
* Setting the icon size on an icon source makes no difference
* if the size is wildcarded. Therefore, you should usually
* call set_size_wildcarded() to un-wildcard it
* in addition to calling this function.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param size Icon size this source applies to.
*/
void set_size(IconSize size);
/** Obtains the text direction this icon source applies to. The return
* value is only useful/meaningful if the text direction is <em>not</em>
* wildcarded.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return Text direction this source matches.
*/
TextDirection get_direction() const;
/** Obtains the widget state this icon source applies to. The return
* value is only useful/meaningful if the widget state is <em>not</em>
* wildcarded.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return Widget state this source matches.
*/
Gtk::StateType get_state() const;
/** Obtains the icon size this source applies to. The return value
* is only useful/meaningful if the icon size is <em>not</em> wildcarded.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return Icon size this source matches.
*/
IconSize get_size() const;
/** Sets the name of an icon to look up in the current icon theme
* to use as a base image when creating icon variants for Gtk::IconSet.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @param icon_name Name of icon to use.
*/
void set_icon_name(const Glib::ustring& icon_name);
/** Retrieves the source icon name, or <tt>0</tt> if none is set. The
* icon_name is not a copy, and should not be modified or expected to
* persist beyond the lifetime of the icon source.
*
* Deprecated: 3.10: Use Gtk::IconTheme instead.
* @return Icon name. This string must not be modified or freed.
*/
Glib::ustring get_icon_name() const;
};
} //namespace Gtk
namespace Gtk
{
/** @relates Gtk::IconSource
* @param lhs The left-hand side
* @param rhs The right-hand side
*/
inline void swap(IconSource& lhs, IconSource& rhs)
{ lhs.swap(rhs); }
} // namespace Gtk
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gtk::IconSource
*/
Gtk::IconSource wrap(GtkIconSource* object, bool take_copy = false);
#ifndef DOXYGEN_SHOULD_SKIP_THIS
template <>
class Value<Gtk::IconSource> : public Glib::Value_Boxed<Gtk::IconSource>
{};
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
} // namespace Glib
#endif // GTKMM_DISABLE_DEPRECATED
#endif /* _GTKMM_ICONSOURCE_H */
|