util_gtk.h 655 B

123456789101112131415161718192021
  1. // Copyright (c) 2019 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ATOM_BROWSER_UI_UTIL_GTK_H_
  5. #define ATOM_BROWSER_UI_UTIL_GTK_H_
  6. namespace util_gtk {
  7. /* These are `const char*` rather than the project-preferred `const char[]`
  8. because they must fit the type of an external dependency */
  9. extern const char* const kCancelLabel;
  10. extern const char* const kNoLabel;
  11. extern const char* const kOkLabel;
  12. extern const char* const kOpenLabel;
  13. extern const char* const kSaveLabel;
  14. extern const char* const kYesLabel;
  15. } // namespace util_gtk
  16. #endif // ATOM_BROWSER_UI_UTIL_GTK_H_