Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
244 chris 1
#ifndef __DIALOGBUTTON_H__
2
#define __DIALOGBUTTON_H__
3
 
4
#include "ButtonWidget.h"
5
 
6
namespace Sexy
7
{
8
 
9
class DialogButton : public ButtonWidget
10
{
11
public:
12
        Image*                                  mComponentImage;
13
        int                                             mTranslateX, mTranslateY;
14
        int                                             mTextOffsetX, mTextOffsetY;
15
 
16
public:
17
        DialogButton(Image* theComponentImage, int theId, ButtonListener* theListener);
18
 
19
        virtual void                    Draw(Graphics* g);
20
};
21
 
22
}
23
 
24
#endif //__DIALOGBUTTON_H__