options.hpp 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. std::string m_xdisplay;
  21. float m_gracetime;
  22. bool m_keyboard;
  23. bool m_decorations;
  24. private:
  25. int parseInt( std::string arg, int* returnInt );
  26. int parseFloat( std::string arg, float* returnFloat );
  27. int parseString( std::string arg, std::string* returnString );
  28. int parseGeometry( std::string arg, int* x, int* y, int* w, int* h );
  29. int parseColor( std::string arg, float* r, float* g, float* b );
  30. bool matches( std::string arg, std::string shorthand, std::string longhand );
  31. };
  32. }
  33. extern slop::Options* options;
  34. #endif // IS_OPTIONS_H_