You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.0 KiB
C++
77 lines
2.0 KiB
C++
/* ============================================================
|
|
* File : camerafolderitem.cpp
|
|
* Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
|
|
* Date : 2003-01-23
|
|
* Description :
|
|
*
|
|
* Copyright 2003 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
|
|
|
|
* 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.
|
|
*
|
|
* ============================================================ */
|
|
|
|
// KDE
|
|
#include <kiconloader.h>
|
|
// Local
|
|
#include "camerafolderitem.h"
|
|
|
|
namespace KIPIKameraKlientPlugin
|
|
{
|
|
|
|
CameraFolderItem::CameraFolderItem(TDEListView* parent, const TQString& name) : TDEListViewItem(parent, name) {
|
|
setPixmap(0, SmallIcon("folder"));
|
|
virtualFolder_ = true;
|
|
count_ = 0;
|
|
name_ = name;
|
|
}
|
|
|
|
CameraFolderItem::CameraFolderItem(TDEListViewItem* parent, const TQString& folderName, const TQString& folderPath) : TDEListViewItem(parent, folderName) {
|
|
setPixmap(0, SmallIcon("folder"));
|
|
folderName_ = folderName;
|
|
folderPath_ = folderPath;
|
|
virtualFolder_ = false;
|
|
count_ = 0;
|
|
name_ = folderName;
|
|
}
|
|
|
|
CameraFolderItem::~CameraFolderItem() {
|
|
}
|
|
|
|
bool CameraFolderItem::isVirtualFolder() {
|
|
return virtualFolder_;
|
|
}
|
|
|
|
TQString CameraFolderItem::folderName() {
|
|
return folderName_;
|
|
}
|
|
|
|
TQString CameraFolderItem::folderPath() {
|
|
return folderPath_;
|
|
}
|
|
|
|
void CameraFolderItem::changeCount(int val) {
|
|
count_ += val;
|
|
setText(0, name_ + " (" + TQString::number(count_) + ")");
|
|
}
|
|
|
|
void CameraFolderItem::setCount(int val) {
|
|
count_ = val;
|
|
setText(0, name_ + " (" + TQString::number(count_) + ")");
|
|
}
|
|
|
|
int CameraFolderItem::count() {
|
|
return count_;
|
|
}
|
|
|
|
} // NameSpace KIPIKameraKlientPlugin
|
|
|