2017-01-02 08:07:46 +01:00
|
|
|
// File: scrollview.cpp
|
|
|
|
|
2017-08-24 00:47:35 +02:00
|
|
|
#include "fapplication.h"
|
2017-01-02 08:07:46 +01:00
|
|
|
#include "fbutton.h"
|
|
|
|
#include "fdialog.h"
|
|
|
|
#include "flabel.h"
|
|
|
|
#include "fmessagebox.h"
|
|
|
|
#include "fscrollview.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class scrollview
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class scrollview : public FScrollView
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Constructor
|
|
|
|
explicit scrollview (FWidget* = 0);
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~scrollview ();
|
|
|
|
|
2017-01-22 23:04:40 +01:00
|
|
|
// Mutator
|
|
|
|
void setScrollSize (int, int);
|
|
|
|
|
2017-01-02 08:07:46 +01:00
|
|
|
private:
|
2017-03-08 23:48:30 +01:00
|
|
|
// Disable copy constructor
|
|
|
|
scrollview (const scrollview&);
|
|
|
|
// Disable assignment operator (=)
|
|
|
|
scrollview& operator = (const scrollview&);
|
|
|
|
|
2017-01-22 23:04:40 +01:00
|
|
|
// Method
|
2017-01-02 08:07:46 +01:00
|
|
|
void draw();
|
2017-01-22 23:04:40 +01:00
|
|
|
|
|
|
|
// Callback methods
|
2017-03-08 23:48:30 +01:00
|
|
|
void cb_go_east (FWidget*, data_ptr);
|
|
|
|
void cb_go_south (FWidget*, data_ptr);
|
|
|
|
void cb_go_west (FWidget*, data_ptr);
|
|
|
|
void cb_go_north (FWidget*, data_ptr);
|
2017-01-22 23:04:40 +01:00
|
|
|
|
|
|
|
// Data Members
|
|
|
|
FButton* go_east;
|
|
|
|
FButton* go_south;
|
|
|
|
FButton* go_west;
|
|
|
|
FButton* go_north;
|
2017-01-02 08:07:46 +01:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
scrollview::scrollview (FWidget* parent)
|
|
|
|
: FScrollView(parent)
|
2017-03-08 23:48:30 +01:00
|
|
|
, go_east()
|
|
|
|
, go_south()
|
|
|
|
, go_west()
|
|
|
|
, go_north()
|
2017-01-22 23:04:40 +01:00
|
|
|
{
|
|
|
|
go_east = new FButton(wchar_t(fc::BlackRightPointingPointer) , this);
|
|
|
|
go_east->setGeometry (1, 1, 5, 1);
|
|
|
|
|
|
|
|
go_south = new FButton(wchar_t(fc::BlackDownPointingTriangle) , this);
|
|
|
|
go_south->setGeometry (getScrollWidth() - 5, 1, 5, 1);
|
|
|
|
|
|
|
|
go_west = new FButton(wchar_t(fc::BlackLeftPointingPointer) , this);
|
|
|
|
go_west->setGeometry (getScrollWidth() - 5, getScrollHeight() - 2, 5, 1);
|
|
|
|
|
|
|
|
go_north = new FButton(wchar_t(fc::BlackUpPointingTriangle) , this);
|
|
|
|
go_north->setGeometry (1, getScrollHeight() - 2, 5, 1);
|
|
|
|
|
|
|
|
go_east->addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_METHOD_CALLBACK (this, &scrollview::cb_go_east)
|
2017-01-22 23:04:40 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
go_south->addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_METHOD_CALLBACK (this, &scrollview::cb_go_south)
|
2017-01-22 23:04:40 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
go_west->addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_METHOD_CALLBACK (this, &scrollview::cb_go_west)
|
2017-01-22 23:04:40 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
go_north->addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_METHOD_CALLBACK (this, &scrollview::cb_go_north)
|
2017-01-22 23:04:40 +01:00
|
|
|
);
|
|
|
|
}
|
2017-01-02 08:07:46 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
scrollview::~scrollview()
|
|
|
|
{ }
|
|
|
|
|
2017-01-22 23:04:40 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void scrollview::setScrollSize (int width, int height)
|
|
|
|
{
|
|
|
|
FScrollView::setScrollSize (width, height);
|
|
|
|
go_south->setPos (width - 5, 1);
|
|
|
|
go_west->setPos (width - 5, height - 1);
|
|
|
|
go_north->setPos (1, height - 1);
|
|
|
|
}
|
|
|
|
|
2017-01-02 08:07:46 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void scrollview::draw()
|
|
|
|
{
|
2017-01-28 23:20:38 +01:00
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(true);
|
|
|
|
|
|
|
|
setColor (wc.label_inactive_fg, wc.dialog_bg);
|
2017-01-02 08:07:46 +01:00
|
|
|
clearArea();
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int y = 0; y < getScrollHeight(); y++)
|
2017-01-02 08:07:46 +01:00
|
|
|
{
|
|
|
|
setPrintPos (1, 1 + y);
|
|
|
|
|
2017-08-27 09:50:30 +02:00
|
|
|
for (int x = 0; x < getScrollWidth(); x++)
|
2017-01-02 08:07:46 +01:00
|
|
|
print (32 + ((x + y) % 0x5f));
|
|
|
|
}
|
|
|
|
|
2017-01-28 23:20:38 +01:00
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(false);
|
|
|
|
|
2017-01-02 08:07:46 +01:00
|
|
|
FScrollView::draw();
|
|
|
|
}
|
|
|
|
|
2017-01-22 23:04:40 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-03-08 23:48:30 +01:00
|
|
|
void scrollview::cb_go_east (FWidget*, data_ptr)
|
2017-01-22 23:04:40 +01:00
|
|
|
{
|
|
|
|
scrollToX (getScrollWidth() - getViewportWidth() + 1);
|
|
|
|
go_south->setFocus();
|
|
|
|
go_east->redraw();
|
|
|
|
go_south->redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-03-08 23:48:30 +01:00
|
|
|
void scrollview::cb_go_south (FWidget*, data_ptr)
|
2017-01-22 23:04:40 +01:00
|
|
|
{
|
|
|
|
scrollToY (getScrollHeight() - getViewportHeight() + 1);
|
|
|
|
go_west->setFocus();
|
|
|
|
go_south->redraw();
|
|
|
|
go_west->redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-03-08 23:48:30 +01:00
|
|
|
void scrollview::cb_go_west (FWidget*, data_ptr)
|
2017-01-22 23:04:40 +01:00
|
|
|
{
|
|
|
|
scrollToX (1);
|
|
|
|
go_north->setFocus();
|
|
|
|
go_west->redraw();
|
2017-01-28 22:03:15 +01:00
|
|
|
go_north->redraw();
|
|
|
|
}
|
2017-01-22 23:04:40 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-03-08 23:48:30 +01:00
|
|
|
void scrollview::cb_go_north (FWidget*, data_ptr)
|
2017-01-22 23:04:40 +01:00
|
|
|
{
|
|
|
|
scrollToY (1);
|
|
|
|
go_east->setFocus();
|
|
|
|
go_north->redraw();
|
|
|
|
go_east->redraw();
|
|
|
|
}
|
|
|
|
|
2017-01-02 08:07:46 +01:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class scrollviewdemo
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class scrollviewdemo : public FDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Constructor
|
|
|
|
explicit scrollviewdemo (FWidget* = 0);
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~scrollviewdemo ();
|
|
|
|
|
|
|
|
// Event handler
|
|
|
|
void onClose (FCloseEvent*);
|
|
|
|
|
|
|
|
// Callback method
|
2017-03-08 23:48:30 +01:00
|
|
|
void cb_quit (FWidget* = 0, data_ptr = 0);
|
2017-01-02 08:07:46 +01:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
scrollviewdemo::scrollviewdemo (FWidget* parent)
|
|
|
|
: FDialog(parent)
|
|
|
|
{
|
|
|
|
setGeometry (16, 3, 50, 19);
|
|
|
|
setText ("Scrolling viewport example");
|
|
|
|
|
|
|
|
// The scrolling viewport widget
|
|
|
|
scrollview* sview = new scrollview (this);
|
|
|
|
sview->setGeometry(3, 2, 44, 12);
|
2017-01-22 23:04:40 +01:00
|
|
|
sview->setScrollSize(188, 124);
|
2017-01-02 08:07:46 +01:00
|
|
|
|
|
|
|
// Quit button
|
|
|
|
FButton* button = new FButton("&Quit", this);
|
|
|
|
button->setGeometry(37, 15, 10, 1);
|
|
|
|
|
|
|
|
// Add function callback
|
|
|
|
button->addCallback
|
|
|
|
(
|
|
|
|
"clicked",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_METHOD_CALLBACK (this, &scrollviewdemo::cb_quit)
|
2017-01-02 08:07:46 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// Text label
|
|
|
|
FLabel* label = new FLabel (this);
|
|
|
|
label->setGeometry(2, 1, 46, 1);
|
|
|
|
label->setText (L"Use scrollbars to change the viewport position");
|
|
|
|
label->setEmphasis();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
scrollviewdemo::~scrollviewdemo()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-03-08 23:48:30 +01:00
|
|
|
void scrollviewdemo::cb_quit (FWidget*, data_ptr)
|
2017-01-02 08:07:46 +01:00
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void scrollviewdemo::onClose (FCloseEvent* ev)
|
|
|
|
{
|
|
|
|
int ret = FMessageBox::info ( this, "Quit"
|
|
|
|
, "Do you really want\n"
|
|
|
|
"to quit the program ?"
|
|
|
|
, FMessageBox::Yes
|
|
|
|
, FMessageBox::No );
|
|
|
|
|
|
|
|
if ( ret == FMessageBox::Yes )
|
|
|
|
ev->accept();
|
|
|
|
else
|
|
|
|
ev->ignore();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// main part
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
|
|
|
// Create the application object
|
|
|
|
FApplication app(argc, argv);
|
|
|
|
|
|
|
|
// Create a simple dialog box
|
|
|
|
scrollviewdemo svdemo(&app);
|
|
|
|
|
|
|
|
app.setMainWidget(&svdemo);
|
|
|
|
svdemo.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|