// Copyright 2016 by Samsung Electronics, Inc., // // This software is the confidential and proprietary information // of Samsung Electronics, Inc. ("Confidential Information"). You // shall not disclose such Confidential Information and shall use // it only in accordance with the terms of the license agreement // you entered into with Samsung. namespace Tizen.Applications { /// /// Operations of the AppControl. /// public static class AppControlOperations { /// /// An explicit launch for a homescreen application. /// public const string Main = "http://tizen.org/appcontrol/operation/main"; /// /// An explicit launch for an application that excludes a homescreen application. /// public const string Default = "http://tizen.org/appcontrol/operation/default"; /// /// Provides an editable access to the given data. /// public const string Edit = "http://tizen.org/appcontrol/operation/edit"; /// /// Displays the data. /// public const string View = "http://tizen.org/appcontrol/operation/view"; /// /// Picks items. /// public const string Pick = "http://tizen.org/appcontrol/operation/pick"; /// /// Creates contents. /// public const string CreateContent = "http://tizen.org/appcontrol/operation/create_content"; /// /// Performs a call to someone. /// public const string Call = "http://tizen.org/appcontrol/operation/call"; /// /// Delivers some data to someone else. /// public const string Send = "http://tizen.org/appcontrol/operation/send"; /// /// Delivers text data to someone else. /// public const string SendText = "http://tizen.org/appcontrol/operation/send_text"; /// /// Shares an item with someone else. /// public const string Share = "http://tizen.org/appcontrol/operation/share"; /// /// Shares multiple items with someone else. /// public const string MultiShare = "http://tizen.org/appcontrol/operation/multi_share"; /// /// Shares text data with someone else. /// public const string ShareText = "http://tizen.org/appcontrol/operation/share_text"; /// /// Dials a number. This shows a UI with the number to be dialed, allowing the user to explicitly initiate the call. /// public const string Dial = "http://tizen.org/appcontrol/operation/dial"; /// /// Performs a search. /// public const string Search = "http://tizen.org/appcontrol/operation/search"; /// /// Downloads items. /// public const string Download = "http://tizen.org/appcontrol/operation/download"; /// /// Prints contents. /// public const string Print = "http://tizen.org/appcontrol/operation/print"; /// /// Composes a message. /// public const string Compose = "http://tizen.org/appcontrol/operation/compose"; /// /// Can be launched by interested System-Event. /// public const string LaunchOnEvent = "http://tizen.org/appcontrol/operation/launch_on_event"; /// /// Adds an item. /// public const string Add = "http://tizen.org/appcontrol/operation/add"; /// /// Captures images by camera applications. /// public const string ImageCapture = "http://tizen.org/appcontrol/operation/image_capture"; /// /// Captures videos by camera applications. /// public const string VideoCapture = "http://tizen.org/appcontrol/operation/video_capture"; /// /// Shows system settings. /// public const string Setting = "http://tizen.org/appcontrol/operation/setting"; /// /// Shows settings to enable Bluetooth. /// public const string SettingBluetoothEnable = "http://tizen.org/appcontrol/operation/setting/bt_enable"; /// /// Shows settings to configure Bluetooth visibility. /// public const string SettingBluetoothVisibility = "http://tizen.org/appcontrol/operation/setting/bt_visibility"; /// /// Shows settings to allow configuration of current location sources. /// public const string SettingLocation = "http://tizen.org/appcontrol/operation/setting/location"; /// /// Shows NFC settings. /// public const string SettingNfc = "http://tizen.org/appcontrol/operation/setting/nfc"; /// /// Shows settings to allow configuration of Wi-Fi. /// public const string SettingWifi = "http://tizen.org/appcontrol/operation/setting/wifi"; } }