blob: 3398b37f35c9591d522d22f685a41e5341b4b2ce (
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
|
/* ============================================================
*
* This file is a part of digiKam project
* http://www.digikam.org
*
* Date : 2006-01-12
* Description : a widget to display ICC profiles descriptions
* in file dialog preview.
*
* Copyright (C) 2006-2007 by Francisco J. Cruz <[email protected]>
*
* 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 <tqfileinfo.h>
#include <tqlayout.h>
#include <tqvgroupbox.h>
// KDE includes.
#include <kurl.h>
// Local includes.
#include "ddebug.h"
#include "iccprofilewidget.h"
#include "iccpreviewwidget.h"
#include "iccpreviewwidget.moc"
namespace Digikam
{
ICCPreviewWidget::ICCPreviewWidget(TQWidget *parent)
: KPreviewWidgetBase( parent )
{
TQVBoxLayout *layout = new TQVBoxLayout( this );
TQVGroupBox *box = new TQVGroupBox( this );
box->setInsideMargin(0);
box->setFrameStyle(TQFrame::NoFrame|TQFrame::Plain);
m_iccProfileWidget = new ICCProfileWidget(box);
layout->addWidget( box );
}
ICCPreviewWidget::~ICCPreviewWidget()
{
}
void ICCPreviewWidget::showPreview( const KURL &url)
{
clearPreview();
TQFileInfo fInfo(url.path());
if ( url.isLocalFile() && fInfo.isFile() && fInfo.isReadable() )
{
DDebug() << url << " is a readble local file" << endl;
m_iccProfileWidget->loadFromURL(url);
}
else
{
DDebug() << url << " is not a readable local file" << endl;
}
}
void ICCPreviewWidget::clearPreview()
{
m_iccProfileWidget->loadFromURL(KURL());
}
} // namespace Digikam
|