ultimatepp/uppsrc/CtrlLib/Help.cpp
mdelfede 263ff5f895 changed svn layout
git-svn-id: svn://ultimatepp.org/upp/trunk@281 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-06-07 22:31:27 +00:00

203 lines
3.3 KiB
C++

#include "CtrlLib.h"
NAMESPACE_UPP
Topic HelpWindow::AcquireTopic(const String& topic)
{
return GetTopic(topic);
}
void HelpWindow::BarEx(Bar& bar)
{}
void HelpWindow::FinishText(RichText& text)
{}
bool HelpWindow::GoTo0(const String& link)
{
if(IsNull(link))
return false;
Topic t = AcquireTopic(link);
SetBar();
if(!IsNull(t.text)) {
label = t.label;
topic = t.link;
Title(FromUtf8(t.title));
RichText txt = ParseQTF(t.text);
FinishText(txt);
view.Pick(txt, zoom);
view.GotoLabel(label, true);
tree.FindSetCursor(topic);
return true;
}
return false;
}
HelpWindow::Pos HelpWindow::GetPos()
{
Pos p;
p.link = topic;
p.scy = view.GetSb();
return p;
}
void HelpWindow::GoTo(const String& link)
{
Pos p = GetPos();
if(GoTo0(link)) {
if(!IsNull(p.link))
back.Add(p);
forward.Clear();
SetBar();
return;
}
LaunchWebBrowser(link);
}
void HelpWindow::Back()
{
Pos p = GetPos();
if(back.GetCount() && GoTo0(back.Top().link)) {
if(back.GetCount()) {
view.SetSb(back.Top().scy);
back.Drop();
}
if(!IsNull(p.link))
forward.Add(p);
SetBar();
}
}
void HelpWindow::Forward()
{
Pos p = GetPos();
if(forward.GetCount() && GoTo0(forward.Top().link)) {
if(forward.GetCount()) {
view.SetSb(forward.Top().scy);
forward.Drop();
}
if(!IsNull(p.link))
back.Add(p);
SetBar();
}
}
void HelpWindow::SetZoom()
{
zoom.d = 1000;
GoTo0(topic);
Refresh();
}
void HelpWindow::FontSize()
{
int q = zoom.m / 20;
if(q < 6 || q > 10)
q = 6;
else
q++;
zoom.m = 20 * q;
SetZoom();
}
void HelpWindow::Print()
{
#ifndef PLATFORM_PDA
Topic t = AcquireTopic(topic);
UPP::Print(ParseQTF(t.text), Size(3968, 6074), 0);
#endif
}
void HelpWindow::Tools(Bar& bar)
{
bar.Add(back.GetCount(), t_("Go Back"), CtrlImg::go_back(), THISBACK(Back))
.Key(K_ALT_LEFT);
bar.Add(forward.GetCount(), t_("Go Forward"), CtrlImg::go_forward(), THISBACK(Forward))
.Key(K_ALT_RIGHT);
bar.Gap();
bar.Add(t_("Font size"), CtrlImg::font_size(), THISBACK(FontSize));
bar.Gap();
#ifndef PLATFORM_PDA
bar.Add(t_("Print"), CtrlImg::print(), THISBACK(Print));
#endif
BarEx(bar);
}
void HelpWindow::SetBar()
{
toolbar.Set(THISBACK(Tools));
}
bool HelpWindow::Key(dword key, int count)
{
if(key == K_ESCAPE) {
Close();
return true;
}
return view.Key(key, count);
}
void HelpWindow::ClearTree()
{
tree_view.Zoom(1);
tree.Clear();
}
int HelpWindow::AddTree(int parent, const Image& img, const String& topic, const String& title)
{
tree_view.NoZoom();
return tree.Add(parent, img, topic, title, false);
}
void HelpWindow::SortTree(int id)
{
tree.SortDeep(id);
}
void HelpWindow::FinishTree()
{
tree.FindSetCursor(topic);
}
void HelpWindow::OpenDeep(int id)
{
tree.OpenDeep(id);
}
void HelpWindow::Serialize(Stream& s)
{
s % zoom.m;
s % tree_view;
SerializePlacement(s);
SetZoom();
}
void HelpWindow::TreeCursor()
{
if(!IsNull(tree))
GoTo(~tree);
}
HelpWindow::HelpWindow()
{
tree_view.Horz(tree, view);
tree_view.SetPos(3000);
Add(tree_view.SizePos());
tree_view.Zoom(1);
Sizeable().Zoomable();
Title(t_("Help"));
BackPaint();
view.WhenLink = THISBACK(GoTo);
AddFrame(toolbar);
view.SetZoom(Zoom(1, 1));
zoom.m = 160;
SetZoom();
view.Margins(2);
SetRect(Ctrl::GetWorkArea().Deflated(80));
tree <<= THISBACK(TreeCursor);
tree.NoRoot();
Icon(CtrlImg::help());
SetBar();
}
END_UPP_NAMESPACE