32 lines
948 B
C++
32 lines
948 B
C++
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// NoesisGUI - http://www.noesisengine.com
|
|
// Copyright (c) 2013 Noesis Technologies S.L. All Rights Reserved.
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef __GUI_STATUSBARITEM_H__
|
|
#define __GUI_STATUSBARITEM_H__
|
|
|
|
|
|
#include <NsCore/Noesis.h>
|
|
#include <NsGui/ContentControl.h>
|
|
|
|
|
|
namespace Noesis
|
|
{
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
/// Represents an item of a StatusBar control.
|
|
///
|
|
/// http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.statusbaritem.aspx
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
class NS_GUI_CORE_API StatusBarItem: public ContentControl
|
|
{
|
|
NS_DECLARE_REFLECTION(StatusBarItem, ContentControl)
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif
|