File Manager / inc / utils /

config.h

  1. /*
  2. * Copyright 2014 - 2015 Samsung Electronics Co., Ltd All Rights Reserved
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17.  
  18. #ifndef CONFIG_H_
  19. #define CONFIG_H_
  20.  
  21. #define FM_PHONE_FOLDER "/opt/usr/media"
  22. #define FM_MEMORY_FOLDER "/opt/storage/sdcard"
  23. #define FM_PHONE_FOLDER_FORMAT "/home/%s/media"
  24.  
  25. #define FM_PHONE_LABEL "Phone"
  26. #define FM_MEMORY_LABEL "SD Card"
  27. #define FM_DEBUG_FOLDER "SLP_debug"
  28.  
  29. #define FM_ICON_PATH "images/"
  30.  
  31. #define FM_LAYOUT_EDJ "edje/filemanager.edj"
  32.  
  33. #ifndef FM_ICON_DEFAULT
  34. #define FM_ICON_DEFAULT FM_ICON_PATH"etc.png"
  35. #endif
  36.  
  37. #define FM_ICON_FOLDER FM_ICON_PATH"folder.png"
  38. #define FM_ICON_IMAGE FM_ICON_PATH"img.png"
  39. #define FM_ICON_VIDEO FM_ICON_PATH"video.png"
  40. #define FM_ICON_MUSIC FM_ICON_PATH"music.png"
  41. #define FM_ICON_SOUND FM_ICON_PATH"music.png"
  42. #define FM_ICON_PDF FM_ICON_PATH"pdf.png"
  43. #define FM_ICON_PPT FM_ICON_PATH"ppt.png"
  44. #define FM_ICON_VOICE FM_ICON_PATH"music.png"
  45. #define FM_ICON_TXT FM_ICON_PATH"text.png"
  46. #define FM_ICON_VNOTE FM_ICON_PATH"text.png"
  47.  
  48. #define FM_TITLE_ICON_HOME FM_ICON_PATH"home.png"
  49. #define FM_TITLE_ICON_HOME_PRESS FM_ICON_PATH"home_press.png"
  50. #define FM_TITLE_ICON_UPPER FM_ICON_PATH"up_folder.png"
  51. #define FM_TITLE_ICON_UPPER_PRESS FM_ICON_PATH"up_folder_press.png"
  52.  
  53. #endif /* CONFIG_H_ */