/usr/include/d/gtkd-3/gio/AppInfoT.d is in libgtkd-3-dev 3.7.5-2build1.
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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 | /*
* This file is part of gtkD.
*
* gtkD 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 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gio.AppInfoT;
public import gio.AppInfoIF;
public import gio.AppLaunchContext;
public import gio.AsyncResultIF;
public import gio.Cancellable;
public import gio.FileIF;
public import gio.IconIF;
public import gio.c.functions;
public import gio.c.types;
public import glib.ErrorG;
public import glib.GException;
public import glib.ListG;
public import glib.Str;
public import gobject.ObjectG;
public import gtkc.giotypes;
/**
* #GAppInfo and #GAppLaunchContext are used for describing and launching
* applications installed on the system.
*
* As of GLib 2.20, URIs will always be converted to POSIX paths
* (using g_file_get_path()) when using g_app_info_launch() even if
* the application requested an URI and not a POSIX path. For example
* for an desktop-file based application with Exec key `totem
* %U` and a single URI, `sftp://foo/file.avi`, then
* `/home/user/.gvfs/sftp on foo/file.avi` will be passed. This will
* only work if a set of suitable GIO extensions (such as gvfs 2.26
* compiled with FUSE support), is available and operational; if this
* is not the case, the URI will be passed unmodified to the application.
* Some URIs, such as `mailto:`, of course cannot be mapped to a POSIX
* path (in gvfs there's no FUSE mount for it); such URIs will be
* passed unmodified to the application.
*
* Specifically for gvfs 2.26 and later, the POSIX URI will be mapped
* back to the GIO URI in the #GFile constructors (since gvfs
* implements the #GVfs extension point). As such, if the application
* needs to examine the URI, it needs to use g_file_get_uri() or
* similar on #GFile. In other words, an application cannot assume
* that the URI passed to e.g. g_file_new_for_commandline_arg() is
* equal to the result of g_file_get_uri(). The following snippet
* illustrates this:
*
* |[
* GFile *f;
* char *uri;
*
* file = g_file_new_for_commandline_arg (uri_from_commandline);
*
* uri = g_file_get_uri (file);
* strcmp (uri, uri_from_commandline) == 0;
* g_free (uri);
*
* if (g_file_has_uri_scheme (file, "cdda"))
* {
* // do something special with uri
* }
* g_object_unref (file);
* ]|
*
* This code will work when both `cdda://sr0/Track 1.wav` and
* `/home/user/.gvfs/cdda on sr0/Track 1.wav` is passed to the
* application. It should be noted that it's generally not safe
* for applications to rely on the format of a particular URIs.
* Different launcher applications (e.g. file managers) may have
* different ideas of what a given URI means.
*/
public template AppInfoT(TStruct)
{
/** Get the main Gtk struct */
public GAppInfo* getAppInfoStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return cast(GAppInfo*)getStruct();
}
/**
* Adds a content type to the application information to indicate the
* application is capable of opening files with the given content type.
*
* Params:
* contentType = a string.
*
* Returns: %TRUE on success, %FALSE on error.
*
* Throws: GException on failure.
*/
public bool addSupportsType(string contentType)
{
GError* err = null;
auto p = g_app_info_add_supports_type(getAppInfoStruct(), Str.toStringz(contentType), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Obtains the information whether the #GAppInfo can be deleted.
* See g_app_info_delete().
*
* Returns: %TRUE if @appinfo can be deleted
*
* Since: 2.20
*/
public bool canDelete()
{
return g_app_info_can_delete(getAppInfoStruct()) != 0;
}
/**
* Checks if a supported content type can be removed from an application.
*
* Returns: %TRUE if it is possible to remove supported
* content types from a given @appinfo, %FALSE if not.
*/
public bool canRemoveSupportsType()
{
return g_app_info_can_remove_supports_type(getAppInfoStruct()) != 0;
}
/**
* Tries to delete a #GAppInfo.
*
* On some platforms, there may be a difference between user-defined
* #GAppInfos which can be deleted, and system-wide ones which cannot.
* See g_app_info_can_delete().
*
* Returns: %TRUE if @appinfo has been deleted
*
* Since: 2.20
*/
public bool delet()
{
return g_app_info_delete(getAppInfoStruct()) != 0;
}
/**
* Creates a duplicate of a #GAppInfo.
*
* Returns: a duplicate of @appinfo.
*/
public AppInfoIF dup()
{
auto p = g_app_info_dup(getAppInfoStruct());
if(p is null)
{
return null;
}
return ObjectG.getDObject!(AppInfoIF)(cast(GAppInfo*) p, true);
}
/**
* Checks if two #GAppInfos are equal.
*
* Note that the check <em>may not</em> compare each individual field, and
* only does an identity check. In case detecting changes in the contents
* is needed, program code must additionally compare relevant fields.
*
* Params:
* appinfo2 = the second #GAppInfo.
*
* Returns: %TRUE if @appinfo1 is equal to @appinfo2. %FALSE otherwise.
*/
public bool equal(AppInfoIF appinfo2)
{
return g_app_info_equal(getAppInfoStruct(), (appinfo2 is null) ? null : appinfo2.getAppInfoStruct()) != 0;
}
/**
* Gets the commandline with which the application will be
* started.
*
* Returns: a string containing the @appinfo's commandline,
* or %NULL if this information is not available
*
* Since: 2.20
*/
public string getCommandline()
{
return Str.toString(g_app_info_get_commandline(getAppInfoStruct()));
}
/**
* Gets a human-readable description of an installed application.
*
* Returns: a string containing a description of the
* application @appinfo, or %NULL if none.
*/
public string getDescription()
{
return Str.toString(g_app_info_get_description(getAppInfoStruct()));
}
/**
* Gets the display name of the application. The display name is often more
* descriptive to the user than the name itself.
*
* Returns: the display name of the application for @appinfo, or the name if
* no display name is available.
*
* Since: 2.24
*/
public string getDisplayName()
{
return Str.toString(g_app_info_get_display_name(getAppInfoStruct()));
}
/**
* Gets the executable's name for the installed application.
*
* Returns: a string containing the @appinfo's application
* binaries name
*/
public string getExecutable()
{
return Str.toString(g_app_info_get_executable(getAppInfoStruct()));
}
/**
* Gets the icon for the application.
*
* Returns: the default #GIcon for @appinfo or %NULL
* if there is no default icon.
*/
public IconIF getIcon()
{
auto p = g_app_info_get_icon(getAppInfoStruct());
if(p is null)
{
return null;
}
return ObjectG.getDObject!(IconIF)(cast(GIcon*) p);
}
/**
* Gets the ID of an application. An id is a string that
* identifies the application. The exact format of the id is
* platform dependent. For instance, on Unix this is the
* desktop file id from the xdg menu specification.
*
* Note that the returned ID may be %NULL, depending on how
* the @appinfo has been constructed.
*
* Returns: a string containing the application's ID.
*/
public string getId()
{
return Str.toString(g_app_info_get_id(getAppInfoStruct()));
}
/**
* Gets the installed name of the application.
*
* Returns: the name of the application for @appinfo.
*/
public string getName()
{
return Str.toString(g_app_info_get_name(getAppInfoStruct()));
}
/**
* Retrieves the list of content types that @app_info claims to support.
* If this information is not provided by the environment, this function
* will return %NULL.
* This function does not take in consideration associations added with
* g_app_info_add_supports_type(), but only those exported directly by
* the application.
*
* Returns: a list of content types.
*
* Since: 2.34
*/
public string[] getSupportedTypes()
{
return Str.toStringArray(g_app_info_get_supported_types(getAppInfoStruct()));
}
/**
* Launches the application. Passes @files to the launched application
* as arguments, using the optional @launch_context to get information
* about the details of the launcher (like what screen it is on).
* On error, @error will be set accordingly.
*
* To launch the application without arguments pass a %NULL @files list.
*
* Note that even if the launch is successful the application launched
* can fail to start if it runs into problems during startup. There is
* no way to detect this.
*
* Some URIs can be changed when passed through a GFile (for instance
* unsupported URIs with strange formats like mailto:), so if you have
* a textual URI you want to pass in as argument, consider using
* g_app_info_launch_uris() instead.
*
* The launched application inherits the environment of the launching
* process, but it can be modified with g_app_launch_context_setenv()
* and g_app_launch_context_unsetenv().
*
* On UNIX, this function sets the `GIO_LAUNCHED_DESKTOP_FILE`
* environment variable with the path of the launched desktop file and
* `GIO_LAUNCHED_DESKTOP_FILE_PID` to the process id of the launched
* process. This can be used to ignore `GIO_LAUNCHED_DESKTOP_FILE`,
* should it be inherited by further processes. The `DISPLAY` and
* `DESKTOP_STARTUP_ID` environment variables are also set, based
* on information provided in @launch_context.
*
* Params:
* files = a #GList of #GFile objects
* launchContext = a #GAppLaunchContext or %NULL
*
* Returns: %TRUE on successful launch, %FALSE otherwise.
*
* Throws: GException on failure.
*/
public bool launch(ListG files, AppLaunchContext launchContext)
{
GError* err = null;
auto p = g_app_info_launch(getAppInfoStruct(), (files is null) ? null : files.getListGStruct(), (launchContext is null) ? null : launchContext.getAppLaunchContextStruct(), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Launches the application. This passes the @uris to the launched application
* as arguments, using the optional @launch_context to get information
* about the details of the launcher (like what screen it is on).
* On error, @error will be set accordingly.
*
* To launch the application without arguments pass a %NULL @uris list.
*
* Note that even if the launch is successful the application launched
* can fail to start if it runs into problems during startup. There is
* no way to detect this.
*
* Params:
* uris = a #GList containing URIs to launch.
* launchContext = a #GAppLaunchContext or %NULL
*
* Returns: %TRUE on successful launch, %FALSE otherwise.
*
* Throws: GException on failure.
*/
public bool launchUris(ListG uris, AppLaunchContext launchContext)
{
GError* err = null;
auto p = g_app_info_launch_uris(getAppInfoStruct(), (uris is null) ? null : uris.getListGStruct(), (launchContext is null) ? null : launchContext.getAppLaunchContextStruct(), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Removes a supported type from an application, if possible.
*
* Params:
* contentType = a string.
*
* Returns: %TRUE on success, %FALSE on error.
*
* Throws: GException on failure.
*/
public bool removeSupportsType(string contentType)
{
GError* err = null;
auto p = g_app_info_remove_supports_type(getAppInfoStruct(), Str.toStringz(contentType), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Sets the application as the default handler for the given file extension.
*
* Params:
* extension = a string containing the file extension
* (without the dot).
*
* Returns: %TRUE on success, %FALSE on error.
*
* Throws: GException on failure.
*/
public bool setAsDefaultForExtension(string extension)
{
GError* err = null;
auto p = g_app_info_set_as_default_for_extension(getAppInfoStruct(), Str.toStringz(extension), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Sets the application as the default handler for a given type.
*
* Params:
* contentType = the content type.
*
* Returns: %TRUE on success, %FALSE on error.
*
* Throws: GException on failure.
*/
public bool setAsDefaultForType(string contentType)
{
GError* err = null;
auto p = g_app_info_set_as_default_for_type(getAppInfoStruct(), Str.toStringz(contentType), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Sets the application as the last used application for a given type.
* This will make the application appear as first in the list returned
* by g_app_info_get_recommended_for_type(), regardless of the default
* application for that content type.
*
* Params:
* contentType = the content type.
*
* Returns: %TRUE on success, %FALSE on error.
*
* Throws: GException on failure.
*/
public bool setAsLastUsedForType(string contentType)
{
GError* err = null;
auto p = g_app_info_set_as_last_used_for_type(getAppInfoStruct(), Str.toStringz(contentType), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Checks if the application info should be shown in menus that
* list available applications.
*
* Returns: %TRUE if the @appinfo should be shown, %FALSE otherwise.
*/
public bool shouldShow()
{
return g_app_info_should_show(getAppInfoStruct()) != 0;
}
/**
* Checks if the application accepts files as arguments.
*
* Returns: %TRUE if the @appinfo supports files.
*/
public bool supportsFiles()
{
return g_app_info_supports_files(getAppInfoStruct()) != 0;
}
/**
* Checks if the application supports reading files and directories from URIs.
*
* Returns: %TRUE if the @appinfo supports URIs.
*/
public bool supportsUris()
{
return g_app_info_supports_uris(getAppInfoStruct()) != 0;
}
}
|