mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
23 lines
386 B
C
23 lines
386 B
C
|
#pragma once
|
||
|
|
||
|
#include "TextBox.h"
|
||
|
|
||
|
using namespace Forms;
|
||
|
|
||
|
namespace UIX
|
||
|
{
|
||
|
// Represents a UIX themed text box control.
|
||
|
class UIXTextBox : public TextBox
|
||
|
{
|
||
|
public:
|
||
|
UIXTextBox();
|
||
|
|
||
|
// The standard windows message pump for this control.
|
||
|
virtual void WndProc(Message& Msg);
|
||
|
|
||
|
private:
|
||
|
|
||
|
// We must define each window message handler here...
|
||
|
void WmNcPaint(Message& Msg);
|
||
|
};
|
||
|
}
|