87 lines
1.8 KiB
C++
87 lines
1.8 KiB
C++
|
|
//////////////////////////////////////////////////////////////
|
|
//
|
|
// Header file for RmBDUI
|
|
//
|
|
// This file is generated by RapidApp 1.2
|
|
//
|
|
// This class implements the user interface portion of a class
|
|
// Normally it is not used directly.
|
|
// Instead the subclass, RmBD is instantiated
|
|
//
|
|
// To extend or alter the behavior of this class, you should
|
|
// modify the RmBD files
|
|
//
|
|
// Restrict changes to those sections between
|
|
// the "//--- Start/End editable code block" markers
|
|
//
|
|
// This will allow RapidApp to integrate changes more easily
|
|
//
|
|
// This class is a ViewKit user interface "component".
|
|
// For more information on how components are used, see the
|
|
// "ViewKit Programmers' Manual", and the RapidApp
|
|
// User's Guide.
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
#ifndef RMBDUI_H
|
|
#define RMBDUI_H
|
|
#include <Vk/VkComponent.h>
|
|
|
|
|
|
//---- Start editable code block: headers and declarations
|
|
|
|
|
|
//---- End editable code block: headers and declarations
|
|
|
|
|
|
class RmBDUI : public VkComponent
|
|
{
|
|
|
|
public:
|
|
|
|
RmBDUI ( const char *, Widget );
|
|
RmBDUI ( const char * );
|
|
~RmBDUI();
|
|
void create ( Widget );
|
|
const char * className();
|
|
|
|
//---- Start editable code block: RmBD public
|
|
|
|
|
|
//---- End editable code block: RmBD public
|
|
|
|
|
|
protected:
|
|
|
|
|
|
// Widgets created by this class
|
|
|
|
Widget _rmBD;
|
|
Widget _rmlabel;
|
|
|
|
|
|
//---- Start editable code block: RmBD protected
|
|
|
|
|
|
//---- End editable code block: RmBD protected
|
|
|
|
|
|
private:
|
|
|
|
// Array of default resources
|
|
|
|
static String _defaultRmBDUIResources[];
|
|
|
|
//---- Start editable code block: RmBD private
|
|
|
|
|
|
//---- End editable code block: RmBD private
|
|
};
|
|
//---- Start editable code block: End of generated code
|
|
|
|
|
|
//---- End editable code block: End of generated code
|
|
|
|
#endif
|
|
|