/usr/include/d/gtkd-3/gio/AppInfoIF.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 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 | /*
* 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.AppInfoIF;
private import gio.AppInfoIF;
private import gio.AppLaunchContext;
private import gio.AsyncResultIF;
private import gio.Cancellable;
private import gio.FileIF;
private import gio.IconIF;
private import gio.c.functions;
public import gio.c.types;
private import glib.ErrorG;
private import glib.GException;
private import glib.ListG;
private import glib.Str;
private 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 interface AppInfoIF{
/** Get the main Gtk struct */
public GAppInfo* getAppInfoStruct(bool transferOwnership = false);
/** the main Gtk struct as a void* */
protected void* getStruct();
/** */
public static GType getType()
{
return g_app_info_get_type();
}
/**
* Creates a new #GAppInfo from the given information.
*
* Note that for @commandline, the quoting rules of the Exec key of the
* [freedesktop.org Desktop Entry Specification](http://freedesktop.org/Standards/desktop-entry-spec)
* are applied. For example, if the @commandline contains
* percent-encoded URIs, the percent-character must be doubled in order to prevent it from
* being swallowed by Exec key unquoting. See the specification for exact quoting rules.
*
* Params:
* commandline = the commandline to use
* applicationName = the application name, or %NULL to use @commandline
* flags = flags that can specify details of the created #GAppInfo
*
* Returns: new #GAppInfo for given command.
*
* Throws: GException on failure.
*/
public static AppInfoIF createFromCommandline(string commandline, string applicationName, GAppInfoCreateFlags flags)
{
GError* err = null;
auto p = g_app_info_create_from_commandline(Str.toStringz(commandline), Str.toStringz(applicationName), flags, &err);
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
if(p is null)
{
return null;
}
return ObjectG.getDObject!(AppInfoIF)(cast(GAppInfo*) p, true);
}
/**
* Gets a list of all of the applications currently registered
* on this system.
*
* For desktop files, this includes applications that have
* `NoDisplay=true` set or are excluded from display by means
* of `OnlyShowIn` or `NotShowIn`. See g_app_info_should_show().
* The returned list does not include applications which have
* the `Hidden` key set.
*
* Returns: a newly allocated #GList of references to #GAppInfos.
*/
public static ListG getAll()
{
auto p = g_app_info_get_all();
if(p is null)
{
return null;
}
return new ListG(cast(GList*) p, true);
}
/**
* Gets a list of all #GAppInfos for a given content type,
* including the recommended and fallback #GAppInfos. See
* g_app_info_get_recommended_for_type() and
* g_app_info_get_fallback_for_type().
*
* Params:
* contentType = the content type to find a #GAppInfo for
*
* Returns: #GList of #GAppInfos
* for given @content_type or %NULL on error.
*/
public static ListG getAllForType(string contentType)
{
auto p = g_app_info_get_all_for_type(Str.toStringz(contentType));
if(p is null)
{
return null;
}
return new ListG(cast(GList*) p, true);
}
/**
* Gets the default #GAppInfo for a given content type.
*
* Params:
* contentType = the content type to find a #GAppInfo for
* mustSupportUris = if %TRUE, the #GAppInfo is expected to
* support URIs
*
* Returns: #GAppInfo for given @content_type or
* %NULL on error.
*/
public static AppInfoIF getDefaultForType(string contentType, bool mustSupportUris)
{
auto p = g_app_info_get_default_for_type(Str.toStringz(contentType), mustSupportUris);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(AppInfoIF)(cast(GAppInfo*) p, true);
}
/**
* Gets the default application for handling URIs with
* the given URI scheme. A URI scheme is the initial part
* of the URI, up to but not including the ':', e.g. "http",
* "ftp" or "sip".
*
* Params:
* uriScheme = a string containing a URI scheme.
*
* Returns: #GAppInfo for given @uri_scheme or %NULL on error.
*/
public static AppInfoIF getDefaultForUriScheme(string uriScheme)
{
auto p = g_app_info_get_default_for_uri_scheme(Str.toStringz(uriScheme));
if(p is null)
{
return null;
}
return ObjectG.getDObject!(AppInfoIF)(cast(GAppInfo*) p, true);
}
/**
* Gets a list of fallback #GAppInfos for a given content type, i.e.
* those applications which claim to support the given content type
* by MIME type subclassing and not directly.
*
* Params:
* contentType = the content type to find a #GAppInfo for
*
* Returns: #GList of #GAppInfos
* for given @content_type or %NULL on error.
*
* Since: 2.28
*/
public static ListG getFallbackForType(string contentType)
{
auto p = g_app_info_get_fallback_for_type(Str.toStringz(contentType));
if(p is null)
{
return null;
}
return new ListG(cast(GList*) p, true);
}
/**
* Gets a list of recommended #GAppInfos for a given content type, i.e.
* those applications which claim to support the given content type exactly,
* and not by MIME type subclassing.
* Note that the first application of the list is the last used one, i.e.
* the last one for which g_app_info_set_as_last_used_for_type() has been
* called.
*
* Params:
* contentType = the content type to find a #GAppInfo for
*
* Returns: #GList of #GAppInfos
* for given @content_type or %NULL on error.
*
* Since: 2.28
*/
public static ListG getRecommendedForType(string contentType)
{
auto p = g_app_info_get_recommended_for_type(Str.toStringz(contentType));
if(p is null)
{
return null;
}
return new ListG(cast(GList*) p, true);
}
/**
* Utility function that launches the default application
* registered to handle the specified uri. Synchronous I/O
* is done on the uri to detect the type of the file if
* required.
*
* Params:
* uri = the uri to show
* launchContext = an optional #GAppLaunchContext
*
* Returns: %TRUE on success, %FALSE on error.
*
* Throws: GException on failure.
*/
public static bool launchDefaultForUri(string uri, AppLaunchContext launchContext)
{
GError* err = null;
auto p = g_app_info_launch_default_for_uri(Str.toStringz(uri), (launchContext is null) ? null : launchContext.getAppLaunchContextStruct(), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Async version of g_app_info_launch_default_for_uri().
*
* This version is useful if you are interested in receiving
* error information in the case where the application is
* sandboxed and the portal may present an application chooser
* dialog to the user.
*
* Params:
* uri = the uri to show
* callback = a #GASyncReadyCallback to call when the request is done
* userData = data to pass to @callback
*
* Since: 2.50
*/
public static void launchDefaultForUriAsync(string uri, AppLaunchContext launchContext, Cancellable cancellable, GAsyncReadyCallback callback, void* userData)
{
g_app_info_launch_default_for_uri_async(Str.toStringz(uri), (launchContext is null) ? null : launchContext.getAppLaunchContextStruct(), (cancellable is null) ? null : cancellable.getCancellableStruct(), callback, userData);
}
/**
* Finishes an asynchronous launch-default-for-uri operation.
*
* Params:
* result = a #GAsyncResult
*
* Returns: %TRUE if the launch was successful, %FALSE if @error is set
*
* Since: 2.50
*
* Throws: GException on failure.
*/
public static bool launchDefaultForUriFinish(AsyncResultIF result)
{
GError* err = null;
auto p = g_app_info_launch_default_for_uri_finish((result is null) ? null : result.getAsyncResultStruct(), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Removes all changes to the type associations done by
* g_app_info_set_as_default_for_type(),
* g_app_info_set_as_default_for_extension(),
* g_app_info_add_supports_type() or
* g_app_info_remove_supports_type().
*
* Params:
* contentType = a content type
*
* Since: 2.20
*/
public static void resetTypeAssociations(string contentType)
{
g_app_info_reset_type_associations(Str.toStringz(contentType));
}
/**
* 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);
/**
* 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();
/**
* 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();
/**
* 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();
/**
* Creates a duplicate of a #GAppInfo.
*
* Returns: a duplicate of @appinfo.
*/
public AppInfoIF dup();
/**
* 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);
/**
* 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();
/**
* 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();
/**
* 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();
/**
* Gets the executable's name for the installed application.
*
* Returns: a string containing the @appinfo's application
* binaries name
*/
public string getExecutable();
/**
* Gets the icon for the application.
*
* Returns: the default #GIcon for @appinfo or %NULL
* if there is no default icon.
*/
public IconIF getIcon();
/**
* 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();
/**
* Gets the installed name of the application.
*
* Returns: the name of the application for @appinfo.
*/
public string getName();
/**
* 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();
/**
* 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);
/**
* 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);
/**
* 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);
/**
* 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);
/**
* 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);
/**
* 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);
/**
* 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();
/**
* Checks if the application accepts files as arguments.
*
* Returns: %TRUE if the @appinfo supports files.
*/
public bool supportsFiles();
/**
* Checks if the application supports reading files and directories from URIs.
*
* Returns: %TRUE if the @appinfo supports URIs.
*/
public bool supportsUris();
}
|