Skip to content

Commit

Permalink
Wrap up 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ssell committed Dec 28, 2014
1 parent 6c68fd8 commit 8c2db0f
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
7 changes: 6 additions & 1 deletion OcularCore/include/Events/AEvent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,21 @@ namespace Ocular
{
/**
* \class EventManager
* \brief Abstract base class of all event objects.
*/
class AEvent : public Object
{
public:

/**
* \param name String name of the event
* \param priority Priority level of the event
*/
AEvent(std::string name, EVENT_PRIORITY priority = EVENT_PRIORITY::MEDIUM);
~AEvent();

/**
*
* \return The priority level of the event.
*/
EVENT_PRIORITY getPriority() const;

Expand Down
9 changes: 9 additions & 0 deletions OcularCore/include/Events/EventSnooper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,16 @@ namespace Ocular
EventSnooper();
~EventSnooper();

/**
* \param ignore If set to TRUE, the snooper will ignore any duplicate events that come in simultaneously.
*/
void setIgnoreDuplicates(bool ignore);

/**
* \param priority Priority level to ignore
* \param ignore If set to TRUE, the snooper will ignore the specified priority level. <br/>
* If FALSE, it will stop ignoring the priority level.
*/
void setIgnorePriorityLevel(EVENT_PRIORITY priority, bool ignore);

protected:
Expand Down
4 changes: 4 additions & 0 deletions OcularCore/include/Events/Events/WindowResizeEvent.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ namespace Ocular
*/
namespace Core
{
/**
* \enum WINDOW_RESIZE_TYPE
* \brief Represents the type of resize event that occurred.
*/
enum WINDOW_RESIZE_TYPE
{
RESIZE = 0, /// Matches WinAPI SIZE_RESTORED
Expand Down
7 changes: 4 additions & 3 deletions docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,8 @@ EXCLUDE_SYMLINKS = NO
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories for example use the pattern */test/*

EXCLUDE_PATTERNS =
EXCLUDE_PATTERNS = */External/* \
*/OcularTest/*

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
Expand Down Expand Up @@ -1171,15 +1172,15 @@ HTML_EXTRA_FILES =
# Minimum value: 0, maximum value: 359, default value: 220.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_COLORSTYLE_HUE = 101
HTML_COLORSTYLE_HUE = 218

# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
# in the HTML output. For a value of 0 the output will use grayscales only. A
# value of 255 will produce the most vivid colors.
# Minimum value: 0, maximum value: 255, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_COLORSTYLE_SAT = 37
HTML_COLORSTYLE_SAT = 24

# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
# luminance component of the colors in the HTML output. Values below 100
Expand Down

0 comments on commit 8c2db0f

Please sign in to comment.