1 #ifndef DALI_TOOLKIT_INTERNAL_VISUAL_URL_H
2 #define DALI_TOOLKIT_INTERNAL_VISUAL_URL_H
5 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
36 * The type of the URL based on the string contents
48 LOCAL, ///< file in local file system
49 TEXTURE, ///< texture uploaded to texture manager
50 REMOTE ///< remote image
54 * Default Constructor.
55 * Resulting URL is not valid
61 * Determines type of visual and whether the url is local or remote
62 * @param[in] url The URL to store and resolve
64 VisualUrl( const std::string& url );
68 * @param[in] url The VisualUrl to copy
70 VisualUrl( const VisualUrl& url );
74 * @param[in] url The VisualUrl to copy
76 VisualUrl& operator=( const VisualUrl& url );
82 const std::string& GetUrl() const;
85 * Get the visual type of the URL
86 * @return The visual type of the URL
91 * Is the URL is local to the device, or remote?
92 * @return the location of the resource
94 ProtocolType GetProtocolType() const;
98 * @return true if the URL has length
100 bool IsValid() const;
103 * @return true if the location is LOCAL, i.e. is loadable from local file system
105 bool IsLocalResource() const;
108 * @return the location part of the url
110 std::string GetLocation() const;
113 * Helper to create a URL of type TEXTURE
114 * @param location the location of the texture
117 static std::string CreateTextureUrl( const std::string& location );
122 ProtocolType mLocation;
126 } // namespace Internal
128 } // namespace Toolkit
132 #endif /* DALI_TOOLKIT_INTERNAL_VISUAL_URL_H */