fix the behaviour of clicking menu disabled item

This commit is contained in:
Jinhao
2016-07-26 07:32:50 +08:00
parent 1ce033c4b3
commit 34cca34773
3 changed files with 84 additions and 47 deletions

View File

@@ -179,6 +179,16 @@ namespace nana
pixel_buffer pxbuf_;
bool changed_;
};
class draw
{
public:
draw(graphics& graph);
void corner(const rectangle& r, unsigned pixels);
private:
graphics& graph_;
};
}//end namespace paint
} //end namespace nana
#endif