mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
20 lines
371 B
C++
20 lines
371 B
C++
#ifndef _DoubleClick_DoubleClick_h
|
|
#define _DoubleClick_DoubleClick_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <DoubleClick/DoubleClick.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class DoubleClick : public WithDoubleClickLayout<TopWindow> {
|
|
public:
|
|
typedef DoubleClick CLASSNAME;
|
|
DoubleClick();
|
|
void LeftDouble();
|
|
void ShowSelected();
|
|
|
|
};
|
|
|
|
#endif
|