WIP: more changes

This commit is contained in:
Matthias Koefferlein
2020-05-31 10:37:30 +02:00
parent eacd67df1c
commit a9c0616aa0
25 changed files with 213 additions and 71 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ Class<lay::AbstractMenu> decl_AbstractMenu ("lay", "AbstractMenu",
"@param path The path to check\n"
"@return false if the path is not a valid path to an item\n"
) +
method ("insert_item", (void (lay::AbstractMenu::*) (const std::string &, const std::string &, const lay::Action &)) &lay::AbstractMenu::insert_item, gsi::arg ("path"), gsi::arg ("name"), gsi::arg ("action"),
method ("insert_item", (void (lay::AbstractMenu::*) (const std::string &, const std::string &, const lay::Action *)) &lay::AbstractMenu::insert_item, gsi::arg ("path"), gsi::arg ("name"), gsi::arg ("action"),
"@brief Inserts a new item before the one given by the path\n"
"\n"
"The Action object passed as the third parameter references the handler which both implements the "
+1 -1
View File
@@ -209,7 +209,7 @@ public:
std::vector<std::string> to_strings () const;
private:
uint32_t *(m_pattern[64]);
uint32_t *m_pattern[64];
uint32_t m_buffer [64 * 32];
unsigned int m_width, m_height;
unsigned int m_pattern_stride;