~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to lib/kofficeui/kolinestyleaction.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-04-20 21:38:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060420213853-j5lxluqvymxt2zny
Tags: 1:1.5.0-0ubuntu2
UbuntuĀ uploadĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE project
2
 
   Copyright (C) 2004 Peter Simonsson <psn@linux.se>
3
 
 
4
 
   This library is free software; you can redistribute it and/or
5
 
   modify it under the terms of the GNU Library General Public
6
 
   License as published by the Free Software Foundation; either
7
 
   version 2 of the License, or (at your option) any later version.
8
 
 
9
 
   This library is distributed in the hope that it will be useful,
10
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
   Library General Public License for more details.
13
 
 
14
 
   You should have received a copy of the GNU Library General Public License
15
 
   along with this library; see the file COPYING.LIB.  If not, write to
16
 
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
   Boston, MA 02111-1307, USA.
18
 
*/
19
 
 
20
 
#include "kolinestyleaction.h"
21
 
 
22
 
#include <qpainter.h>
23
 
#include <qpixmap.h>
24
 
#include <qbitmap.h>
25
 
 
26
 
#include <kpopupmenu.h>
27
 
#include <kdebug.h>
28
 
#include <klocale.h>
29
 
 
30
 
class KoLineStyleAction::KoLineStyleActionPrivate
31
 
{
32
 
  public:
33
 
    KoLineStyleActionPrivate()
34
 
    {
35
 
      m_currentStyle = Qt::SolidLine;
36
 
    }
37
 
    
38
 
    ~KoLineStyleActionPrivate()
39
 
    {
40
 
    }
41
 
    
42
 
    int m_currentStyle;
43
 
};
44
 
 
45
 
KoLineStyleAction::KoLineStyleAction(const QString &text, const QString& icon,
46
 
  QObject* parent, const char* name) : KoSelectAction(text, icon, parent, name)
47
 
{
48
 
  d = new KoLineStyleActionPrivate;
49
 
   
50
 
  createMenu();
51
 
}
52
 
 
53
 
KoLineStyleAction::KoLineStyleAction(const QString &text, const QString& icon, const QObject* receiver,
54
 
  const char* slot, QObject* parent, const char* name) : KoSelectAction(text, icon, receiver, slot, parent, name)
55
 
{
56
 
  d = new KoLineStyleActionPrivate;
57
 
  
58
 
  createMenu();
59
 
}
60
 
 
61
 
KoLineStyleAction::~KoLineStyleAction()
62
 
{
63
 
  delete d;
64
 
}
65
 
 
66
 
void KoLineStyleAction::createMenu()
67
 
{
68
 
  KPopupMenu* popup = popupMenu();
69
 
  QBitmap mask;
70
 
  QPixmap pix(70, 21);
71
 
  QPainter p(&pix, popup);
72
 
  int cindex = 0;
73
 
  QPen pen;
74
 
  pen.setWidth(2);
75
 
  popup->insertItem(i18n("None"),cindex++);
76
 
 
77
 
  for(int i = 1; i < 6; i++) {
78
 
    pix.fill(white);
79
 
    pen.setStyle(static_cast<Qt::PenStyle>(i));
80
 
    p.setPen(pen);
81
 
    p.drawLine(0, 10, pix.width(), 10);
82
 
    mask = pix;
83
 
    pix.setMask(mask);
84
 
    popup->insertItem(pix,cindex++);
85
 
  }
86
 
}
87
 
 
88
 
#include "kolinestyleaction.moc"