~leighman/ubuntu/raring/workrave/fix-desktop-file-2

« back to all changes in this revision

Viewing changes to frontend/gtkmm/src/GUIConfig.hh

  • Committer: Package Import Robot
  • Author(s): Michael Terry
  • Date: 2013-01-24 11:04:41 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: package-import@ubuntu.com-20130124110441-t06q3xlc7mp4406p
Tags: upstream-1.10
ImportĀ upstreamĀ versionĀ 1.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// GUI.hh --- The WorkRave GUI
2
2
//
3
 
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012 Rob Caelers & Raymond Penners
 
3
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013 Rob Caelers & Raymond Penners
4
4
// All rights reserved.
5
5
//
6
6
// This program is free software: you can redistribute it and/or modify
29
29
public:
30
30
  static const std::string CFG_KEY_BREAK_AUTO_NATURAL;
31
31
  static const std::string CFG_KEY_BREAK_IGNORABLE;
 
32
  static const std::string CFG_KEY_BREAK_SKIPPABLE;
32
33
  static const std::string CFG_KEY_BREAK_EXERCISES;
33
34
  static const std::string CFG_KEY_BLOCK_MODE;
34
35
  static const std::string CFG_KEY_LOCALE;
55
56
  static void set_trayicon_enabled(bool enabled);
56
57
 
57
58
  static bool get_ignorable(BreakId id);
 
59
  static bool get_skippable(BreakId id);
58
60
  static void set_ignorable(BreakId id, bool b);
59
61
  static int get_number_of_exercises(BreakId id);
60
62
  static void set_number_of_exercises(BreakId id, int num);
64
66
 
65
67
  static void set_start_in_tray(bool b);
66
68
  static bool get_start_in_tray();
67
 
 
68
 
  
 
69
 
69
70
private:
70
 
 
71
71
  static std::string expand(const std::string &str, BreakId id);
72
72
};
73
73