options.hpp 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef IS_OPTIONS_H_
  2. #include <string>
  3. #include <cstdio>
  4. namespace slop {
  5. class Options {
  6. public:
  7. Options();
  8. int parseOptions( int argc, char** argv );
  9. void printHelp();
  10. std::string m_version;
  11. int m_borderSize;
  12. int m_padding;
  13. int m_tolerance;
  14. int m_minimumsize;
  15. int m_maximumsize;
  16. int m_maxsize;
  17. float m_red;
  18. float m_green;
  19. float m_blue;
  20. float m_alpha;
  21. std::string m_xdisplay;
  22. float m_gracetime;
  23. bool m_keyboard;
  24. bool m_decorations;
  25. private:
  26. int parseInt( std::string arg, int* returnInt );
  27. int parseFloat( std::string arg, float* returnFloat );
  28. int parseString( std::string arg, std::string* returnString );
  29. int parseGeometry( std::string arg, int* x, int* y, int* w, int* h );
  30. int parseColor( std::string arg, float* r, float* g, float* b, float* a );
  31. bool matches( std::string arg, std::string shorthand, std::string longhand );
  32. };
  33. }
  34. extern slop::Options* options;
  35. #endif // IS_OPTIONS_H_