15fede72eSopenharmony_ci/*
25fede72eSopenharmony_ci * Copyright (c) 2020 Huawei Device Co., Ltd.
35fede72eSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
45fede72eSopenharmony_ci * you may not use this file except in compliance with the License.
55fede72eSopenharmony_ci * You may obtain a copy of the License at
65fede72eSopenharmony_ci *
75fede72eSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
85fede72eSopenharmony_ci *
95fede72eSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
105fede72eSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
115fede72eSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
125fede72eSopenharmony_ci * See the License for the specific language governing permissions and
135fede72eSopenharmony_ci * limitations under the License.
145fede72eSopenharmony_ci */
155fede72eSopenharmony_ci
165fede72eSopenharmony_ci#ifndef OHOS_GALLERY_CONFIG_H
175fede72eSopenharmony_ci#define OHOS_GALLERY_CONFIG_H
185fede72eSopenharmony_ci
195fede72eSopenharmony_cinamespace OHOS {
205fede72eSopenharmony_ci/** icon resource file path */
215fede72eSopenharmony_cistatic const char* const BACK_ICON_PATH = "/gallery/assets/gallery/resources/drawable/ic_back.png";
225fede72eSopenharmony_cistatic const char* const VIDEO_TAG_ICON_PATH = "/gallery/assets/gallery/resources/drawable/ic_gallery_video_tag.png";
235fede72eSopenharmony_cistatic const char* const VIDEO_PALY_PATH = "/gallery/assets/gallery/resources/drawable/ic_gallery_play.png";
245fede72eSopenharmony_cistatic const char* const VIDEO_PAUSE_PATH = "/gallery/assets/gallery/resources/drawable/ic_gallery_pause.png";
255fede72eSopenharmony_ci
265fede72eSopenharmony_cistatic constexpr int16_t MAX_PICTURE_COUNT = 256;
275fede72eSopenharmony_cistatic constexpr uint16_t MAX_PATH_LENGTH = 512;
285fede72eSopenharmony_ci
295fede72eSopenharmony_ci/** thumb, photo, and video folder path */
305fede72eSopenharmony_cistatic const char* const THUMBNAIL_DIRECTORY = "/userdata/thumb";
315fede72eSopenharmony_cistatic const char* const PHOTO_DIRECTORY = "/userdata/photo";
325fede72eSopenharmony_cistatic const char* const VIDEO_SOURCE_DIRECTORY = "/userdata/video";
335fede72eSopenharmony_ci
345fede72eSopenharmony_ci/** general page configuration */
355fede72eSopenharmony_cistatic constexpr int ROOT_VIEW_POSITION_X = 0;
365fede72eSopenharmony_cistatic constexpr int ROOT_VIEW_POSITION_Y = 0;
375fede72eSopenharmony_cistatic constexpr int ROOT_VIEW_WIDTH = 960;
385fede72eSopenharmony_cistatic constexpr int ROOT_VIEW_HEIGHT = 480;
395fede72eSopenharmony_cistatic constexpr uint16_t ROOT_VIEW_OPACITY = 255;
405fede72eSopenharmony_ci
415fede72eSopenharmony_cistatic const char* const FONT_NAME = "SourceHanSansSC-Regular.otf";
425fede72eSopenharmony_ci
435fede72eSopenharmony_ci/** back icon 36 x 36 */
445fede72eSopenharmony_cistatic constexpr int16_t BACK_ICON_POSITION_X = 38;
455fede72eSopenharmony_cistatic constexpr int16_t BACK_ICON_POSITION_Y = 17;
465fede72eSopenharmony_ci
475fede72eSopenharmony_ci/** THUMBNAIL */
485fede72eSopenharmony_cistatic constexpr int16_t THUMBNAIL_RESOLUTION_X = 120;
495fede72eSopenharmony_cistatic constexpr int16_t THUMBNAIL_RESOLUTION_Y = 120;
505fede72eSopenharmony_cistatic constexpr int16_t THUMBNAIL_SPACE = 4;
515fede72eSopenharmony_cistatic constexpr int16_t THUMBNAIL_COLUMN = 3;
525fede72eSopenharmony_ci
535fede72eSopenharmony_cistatic constexpr int16_t VIDEO_TAG_POSITION_X = 10;
545fede72eSopenharmony_cistatic constexpr int16_t VIDEO_TAG_POSITION_Y = THUMBNAIL_RESOLUTION_Y - 37;
555fede72eSopenharmony_ci
565fede72eSopenharmony_ci/** title */
575fede72eSopenharmony_cistatic constexpr int16_t LABEL_POSITION_X = BACK_ICON_POSITION_X + 60;
585fede72eSopenharmony_cistatic constexpr int16_t LABEL_POSITION_Y = 0;
595fede72eSopenharmony_cistatic constexpr int16_t LABEL_WIDTH = 100;
605fede72eSopenharmony_cistatic constexpr int16_t LABEL_HEIGHT = 70;
615fede72eSopenharmony_cistatic constexpr uint16_t GALLERY_FONT_SIZE = 25;
625fede72eSopenharmony_cistatic constexpr uint16_t GALLERY_DELETE_FONT_SIZE = 22;
635fede72eSopenharmony_cistatic constexpr int16_t DELETE_LABEL_WIDTH = 150;
645fede72eSopenharmony_ci
655fede72eSopenharmony_ci/** prefix and File Type */
665fede72eSopenharmony_cistatic const char* const PHOTO_PREFIX = "photo";
675fede72eSopenharmony_cistatic const char* const AVAILABEL_SOURCE_TYPE = ".mp4";
685fede72eSopenharmony_cistatic const char* const AVAILABEL_SOURCE_TYPE_MP4 = ".MP4";
695fede72eSopenharmony_ci
705fede72eSopenharmony_ci/** playback status bar */
715fede72eSopenharmony_cistatic constexpr uint16_t STATUS_BAR_GROUP_HEIGHT = 96;
725fede72eSopenharmony_cistatic constexpr uint16_t TOGGLE_BUTTON_OFFSET_X = 36;
735fede72eSopenharmony_cistatic constexpr uint16_t TOGGLE_BUTTON_OFFSET_Y = 18;
745fede72eSopenharmony_cistatic constexpr uint16_t TOGGLE_BUTTON_WIDTH = 60;
755fede72eSopenharmony_cistatic constexpr uint16_t TOGGLE_BUTTON_HEIGHT = 60;
765fede72eSopenharmony_ci
775fede72eSopenharmony_cistatic constexpr uint16_t CURRENT_TIME_LABEL_X = TOGGLE_BUTTON_OFFSET_X + TOGGLE_BUTTON_WIDTH + TOGGLE_BUTTON_OFFSET_Y;
785fede72eSopenharmony_cistatic constexpr uint16_t CURRENT_TIME_LABEL_Y = 0;
795fede72eSopenharmony_cistatic constexpr uint16_t CURRENT_TIME_LABEL_WIDTH = 60;
805fede72eSopenharmony_cistatic constexpr uint16_t CURRENT_TIME_LABEL_HEIGHT = STATUS_BAR_GROUP_HEIGHT;
815fede72eSopenharmony_ci
825fede72eSopenharmony_cistatic constexpr uint16_t TOTAL_TIME_LABEL_WIDTH = 90;
835fede72eSopenharmony_cistatic constexpr uint16_t TOTAL_TIME_LABEL_HEIGHT = STATUS_BAR_GROUP_HEIGHT;
845fede72eSopenharmony_cistatic constexpr uint16_t TOTAL_TIME_LABEL_X = ROOT_VIEW_WIDTH - TOTAL_TIME_LABEL_WIDTH;
855fede72eSopenharmony_cistatic constexpr uint16_t TOTAL_TIME_LABEL_Y = 0;
865fede72eSopenharmony_ci
875fede72eSopenharmony_cistatic constexpr uint16_t SLIDER_X = CURRENT_TIME_LABEL_X + CURRENT_TIME_LABEL_WIDTH;
885fede72eSopenharmony_cistatic constexpr uint16_t SLIDER_Y = 2;
895fede72eSopenharmony_cistatic constexpr uint16_t SLIDER_HEIGHT = 3;
905fede72eSopenharmony_cistatic constexpr uint16_t SLIDER_WIDTH = ROOT_VIEW_WIDTH - SLIDER_X - TOTAL_TIME_LABEL_WIDTH - 20;
915fede72eSopenharmony_cistatic constexpr uint16_t KNOB_WIDTH = 25;
925fede72eSopenharmony_ci
935fede72eSopenharmony_cistatic constexpr uint16_t PLAYER_FONT_SIZE = 18;
945fede72eSopenharmony_ci} // namespace OHOS
955fede72eSopenharmony_ci#endif // OHOS_GALLERY_CONFIG_H