summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoZoomAction.cpp
blob: 5455a159de796529137f260ec1cd40387498e7e6 (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
/*  This file is part of the KDE libraries
    Copyright (C) 2004 Ariya Hidayat <ariya@kde.org>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License version 2 as published by the Free Software Foundation.

    This library 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#include <KoZoomAction.h>

#include <tqstring.h>
#include <tqstringlist.h>
#include <tqregexp.h>
#include <tqvaluelist.h>

#include <klocale.h>

KoZoomAction::KoZoomAction( const TQString& text, const TQIconSet& pix, 
  const KShortcut& cut, TQObject* tqparent, const char* name ):
  KSelectAction( text, pix, cut, tqparent, name )
{
  init();
}
      
KoZoomAction::KoZoomAction( const TQString& text, const TQString& pix, 
  const KShortcut& cut, TQObject* tqparent, const char* name ):
  KSelectAction( text, pix, cut, tqparent, name )
{
  init();
  
}

void KoZoomAction::setZoom( const TQString& text )
{
  bool ok = false;
  TQString t = text;
  int zoom = t.remove( '%' ).toInt( &ok );
  
  // where we'll store sorted new zoom values
  TQValueList<int> list;
  if( zoom > 10 ) list.append( zoom );
  
  // "Captured" non-empty sequence of digits
  TQRegExp regexp("(\\d+)"); 
  
  const TQStringList itemsList( items() );
  for( TQStringList::ConstIterator it = itemsList.begin(); it != itemsList.end(); ++it )
  {
    regexp.search( *it );
    const int val=regexp.cap(1).toInt( &ok );
    
    //zoom : limit inferior=10
    if( ok && val>9 && list.tqcontains( val )==0 )
      list.append( val );
  }
  
  qHeapSort( list );

  // update items with new sorted zoom values
  TQStringList values;
  for (TQValueList<int>::Iterator it = list.begin(); it != list.end(); ++it )
    values.append( i18n("%1%").tqarg(*it) );
  setItems( values );
  
  TQString zoomStr = i18n("%1%").tqarg( zoom );
  setCurrentItem( values.tqfindIndex( zoomStr ) );
}

void KoZoomAction::setZoom( int zoom )
{
  setZoom( TQString::number( zoom ) );
}

void KoZoomAction::activated( const TQString& text )
{
  setZoom( text );
  emit zoomChanged( text );
}

void KoZoomAction::init()
{
  setEditable( true );
    
  TQStringList values;
  values << i18n("%1%").tqarg("33");
  values << i18n("%1%").tqarg("50");
  values << i18n("%1%").tqarg("75");
  values << i18n("%1%").tqarg("100");
  values << i18n("%1%").tqarg("125");
  values << i18n("%1%").tqarg("150");
  values << i18n("%1%").tqarg("200");
  values << i18n("%1%").tqarg("250");
  values << i18n("%1%").tqarg("350");
  values << i18n("%1%").tqarg("400");
  values << i18n("%1%").tqarg("450");
  values << i18n("%1%").tqarg("500");
  setItems( values );
  
  setCurrentItem( values.tqfindIndex( i18n("%1%").tqarg( 100 ) ) );
  
  connect( this, TQT_SIGNAL( activated( const TQString& ) ), 
    TQT_SLOT( activated( const TQString& ) ) );
}

#include "KoZoomAction.moc"