summaryrefslogtreecommitdiffstats
path: root/digikam/digikam/kdatepickerpopup.cpp
blob: 34e26542ca152306c3de6541876975aea0ad8cf9 (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* ============================================================
 *
 * This file is a part of digiKam project
 * http://www.digikam.org
 *
 * Date        : 2004-04-21
 * Description : a menu widget to pick a date.
 *               this widget come from libtdepim.
 *
 * Copyright (C) 2004 Bram Schoenmakers <bramschoenmakers@kde.nl>
 * Copyright (C) 2006 Mikolaj Machowski <mikmach@wp.pl>
 *
 * This program is free software; you can redistribute it
 * and/or modify it under the terms of the GNU General
 * Public License as published by the Free Software Foundation;
 * either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * ============================================================ */

// TQt includes.

#include <tqdatetime.h>
#include <tqpopupmenu.h>

// KDE includes.

#include <klocale.h>

// Local includes.

#include "kdatepickerpopup.h"
#include "kdatepickerpopup.moc"

namespace Digikam
{

KDatePickerPopup::KDatePickerPopup(int items, const TQDate &date, TQWidget *parent,
                                    const char *name)
                : TQPopupMenu( parent, name )
{
    mItems      = items;
    mDatePicker = new KDatePicker( this );
    mDatePicker->setCloseButton( false );

    connect( mDatePicker, TQT_SIGNAL( dateEntered( TQDate ) ),
               this, TQT_SLOT( slotDateChanged( TQDate ) ) );

    connect( mDatePicker, TQT_SIGNAL( dateSelected( TQDate ) ),
               this, TQT_SLOT( slotDateChanged( TQDate ) ) );

    mDatePicker->setDate( date );
    buildMenu();
}

void KDatePickerPopup::buildMenu()
{
    if ( isVisible() ) return;
    clear();

    if ( mItems & DatePicker ) 
    {
        insertItem( mDatePicker );

        if ( ( mItems & NoDate ) || ( mItems & Words ) )
        insertSeparator();
    }

    if ( mItems & Words ) 
    {
        insertItem( i18n("&Today"),       this, TQT_SLOT( slotToday() ) );
        insertItem( i18n("Y&esterday"),   this, TQT_SLOT( slotYesterday() ) );
        insertItem( i18n("Last &Monday"), this, TQT_SLOT( slotPrevMonday() ) );
        insertItem( i18n("Last &Friday"), this, TQT_SLOT( slotPrevFriday() ) );
        insertItem( i18n("Last &Week"),   this, TQT_SLOT( slotPrevWeek() ) );
        insertItem( i18n("Last M&onth"),  this, TQT_SLOT( slotPrevMonth() ) );

        if ( mItems & NoDate )
        insertSeparator();
    }

    if ( mItems & NoDate )
        insertItem( i18n("No Date"), this, TQT_SLOT( slotNoDate() ) );
}

KDatePicker *KDatePickerPopup::datePicker() const
{
    return mDatePicker;
}

void KDatePickerPopup::setDate( const TQDate &date )
{
    mDatePicker->setDate( date );
}

#if 0
void KDatePickerPopup::setItems( int items )
{
    mItems = items;
    buildMenu();
}
#endif

void KDatePickerPopup::slotDateChanged( TQDate date )
{
    emit dateChanged( date );
    hide();
}

void KDatePickerPopup::slotToday()
{
    emit dateChanged( TQDate::currentDate() );
}

void KDatePickerPopup::slotYesterday()
{
    emit dateChanged( TQDate::currentDate().addDays( -1 ) );
}

void KDatePickerPopup::slotPrevFriday()
{
    TQDate date = TQDate::currentDate();
    int day = date.dayOfWeek();
    if ( day < 6 )
        date = date.addDays( 5 - 7 - day );
    else
        date = date.addDays( 5 - day );

    emit dateChanged( date );
}

void KDatePickerPopup::slotPrevMonday()
{
    TQDate date = TQDate::currentDate();
    emit dateChanged( date.addDays( 1 - date.dayOfWeek() ) );
}

void KDatePickerPopup::slotNoDate()
{
    emit dateChanged( TQDate() );
}

void KDatePickerPopup::slotPrevWeek()
{
    emit dateChanged( TQDate::currentDate().addDays( -7 ) );
}

void KDatePickerPopup::slotPrevMonth()
{
    emit dateChanged( TQDate::currentDate().addMonths( -1 ) );
}

}  // namespace Digikam