summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_slideshow.ui.h
blob: ffdfd4225ccec4f11a2f9fe0da41558860f4c222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/****************************************************************************
** ui.h extension file, included from the uic-generated form implementation.
**
** If you wish to add, delete or rename functions or slots use
** TQt Designer which will update this file, preserving your code. Create an
** init() function in place of a constructor, and a destroy() function in
** place of a destructor.
*****************************************************************************/

#define SQ_HIST_NUMBER 25

void SQ_SlideShow::init()
{
    KFile::Mode mode = static_cast<KFile::Mode>(KFile::Directory | KFile::ExistingOnly);
    kurl->setMode(mode);

    SQ_Config::instance()->setGroup("Slideshow");

    checkRecurs->setChecked(SQ_Config::instance()->readBoolEntry("recurs", false));
    spinDelay->setValue(SQ_Config::instance()->readNumEntry("delay", 1000));
    spinCycle->setValue(SQ_Config::instance()->readNumEntry("repeat", 0));
    pushCurrent->setPixmap(SQ_IconLoader::instance()->loadIcon("folder_green", TDEIcon::Desktop, 16));
    pushHistory->setPixmap(SQ_IconLoader::instance()->loadIcon("history", TDEIcon::Desktop, 16));
    checkMessages->setChecked(SQ_Config::instance()->readBoolEntry("messages", true));
    checkName->setChecked(SQ_Config::instance()->readBoolEntry("messages_name", true));
    checkSize->setChecked(SQ_Config::instance()->readBoolEntry("messages_size", false));
    checkPos->setChecked(SQ_Config::instance()->readBoolEntry("messages_pos", true));

    TQColor col;
    col.setNamedColor(SQ_Config::instance()->readEntry("background", "#4e4e4e"));
    bcolor->setColor(col);
    col.setNamedColor(SQ_Config::instance()->readEntry("message_text", "#ffffff"));
    tcolor->setColor(col);

    TQPopupMenu *hist = new TQPopupMenu;
    items = SQ_Config::instance()->readListEntry("history");
    int i = 0;

    setPath(items.last());

    for(TQStringList::iterator it = items.begin();it != items.end();++it)
    {
        if(i++ < SQ_HIST_NUMBER)
            hist->insertItem(*it);
        else
            break;
    }

    connect(hist, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotActivated(int)));

    pushHistory->setPopup(hist);
}

int SQ_SlideShow::exec(TQString &path)
{
    int result = TQDialog::exec();

    if(result == TQDialog::Accepted)
    {
        // save parameters
        SQ_Config::instance()->setGroup("Slideshow");
        SQ_Config::instance()->writeEntry("delay", spinDelay->value());
        SQ_Config::instance()->writeEntry("repeat", spinCycle->value());
        SQ_Config::instance()->writeEntry("background", bcolor->color().name());
        SQ_Config::instance()->writeEntry("message_text", tcolor->color().name());
        SQ_Config::instance()->writeEntry("messages", checkMessages->isChecked());
        SQ_Config::instance()->writeEntry("messages_name", checkName->isChecked());
        SQ_Config::instance()->writeEntry("messages_size", checkSize->isChecked());
        SQ_Config::instance()->writeEntry("messages_pos", checkPos->isChecked());
        SQ_Config::instance()->writeEntry("history", items);
        SQ_Config::instance()->writeEntry("recurs", checkRecurs->isChecked());
        path = kurl->url();
    }

    return result;
}

void SQ_SlideShow::slotDirectory(const TQString &dir)
{
    if(!dir.isEmpty())
        appendPath(dir);
}

void SQ_SlideShow::setPath(const TQString &path)
{
    kurl->setURL(path);
}

void SQ_SlideShow::slotActivated(int id)
{
    TQString dir = pushHistory->popup()->text(id);

    if(!dir.isEmpty())
        setPath(dir);
}

void SQ_SlideShow::appendPath(const TQString &path)
{
    if(items.findIndex(path) == -1)
    {
        items.append(path);
        pushHistory->popup()->insertItem(path);

        if(items.count() > SQ_HIST_NUMBER)
            items.pop_front();
    }
}

void SQ_SlideShow::slotCurrent()
{
    TQString path = SQ_WidgetStack::instance()->url().prettyURL();

    setPath(path);
    appendPath(path);
}

void SQ_SlideShow::slotMessages( bool b)
{
    checkName->setEnabled(b);
    checkPos->setEnabled(b);
    checkSize->setEnabled(b);
    textName->setEnabled(b);
    textSize->setEnabled(b);
    textPos->setEnabled(b);
    textColor->setEnabled(b);
    tcolor->setEnabled(b);
}