myTextView.h
#ifndef GUI_MYTEXTVIEW
#define GUI_MYTEXTVIEW
#if BUILDING_LIB
#define UGLY_IMPEXP __declspec(dllexport)
#else
#define UGLY_IMPEXP __declspec(dllimport)
#endif
class UGLY_IMPEXP LayoutMatrix;
#endif
class
MyTextView :
public BTextView
{
private:
MyTextView(const MyTextView& copy);/*not implemented on purpose*/
public:
MyTextView& operator = (const MyTextView& assign);/*not implemented on purpose*/
MyTextView(const char * paramName,
};
const char * paramText,
~MyTextView();
float fparamMaxWidth,
float fparamMaxHeight,
LayoutMatrix * lpparamLayoutMatrix);
void AttachedToWindow(void);
void MyGetPreferredSize(float * fpparamWidth,
float * fpparamHeight);
float fmWidth;/*only reason these are public is so LayoutMatrixItem may use them*/
float fmHeight;/*maybe it should be a friend of this class?????*/
for version 1.0.1
The BeGUI
Book
Copyright © 1998-1999 Ed Musgrove Be Developer #2076. All rights reserved.
edgar@harbornet.com
emusgrov@linknet.kitsap.lib.wa.us
Last modified January 19, 1999.