-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
/* | ||
/** | ||
* A Drawing Implementation | ||
* Nana C++ Library(http://www.nanapro.org) | ||
* Copyright(C) 2003-2014 Jinhao([email protected]) | ||
* Copyright(C) 2003-2024 Jinhao([email protected]) | ||
* | ||
* Distributed under the Boost Software License, Version 1.0. | ||
* (See accompanying file LICENSE_1_0.txt or copy at | ||
* http://www.boost.org/LICENSE_1_0.txt) | ||
* | ||
* @file: nana/gui/drawing.hpp | ||
* @file nana/gui/drawing.hpp | ||
*/ | ||
#ifndef NANA_GUI_DRAWING_HPP | ||
#define NANA_GUI_DRAWING_HPP | ||
|
||
#include <nana/push_ignore_diagnostic> | ||
#include "widgets/widget.hpp" | ||
#include "../traits.hpp" | ||
|
||
namespace nana | ||
{ | ||
/// \brief Draw pictures on a widget by specifying a drawing method that will be employed every time the widget refreshes. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
/* | ||
/** | ||
* A Drawing Implementation | ||
* Nana C++ Library(http://www.nanapro.org) | ||
* Copyright(C) 2003-2015 Jinhao([email protected]) | ||
* Copyright(C) 2003-2024 Jinhao([email protected]) | ||
* | ||
* Distributed under the Boost Software License, Version 1.0. | ||
* (See accompanying file LICENSE_1_0.txt or copy at | ||
* http://www.boost.org/LICENSE_1_0.txt) | ||
* | ||
* @file: nana/gui/drawing.cpp | ||
* @file nana/gui/drawing.cpp | ||
*/ | ||
|
||
#include "detail/basic_window.hpp" | ||
|