File: pMenuBar.cpp

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (405 lines) | stat: -rw-r--r-- 10,079 bytes parent folder | download | duplicates (3)
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/****************************************************************************
    Copyright (C) 2005 - 2011  Filipe AZEVEDO & The Monkey Studio Team
    http://monkeystudio.org licensing under the GNU GPL.

    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 of the License, 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.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
****************************************************************************/
#include "pMenuBar.h"

#include <QDebug>

/*!
    \brief Create a new pMenuBar object
    \param parent The parent widget
*/
pMenuBar::pMenuBar( QWidget* parent )
    : QMenuBar( parent )
{
    mDefaultShortcutContext = Qt::WindowShortcut;
    mActionsManager = new pActionsManager( "Menu Bar", this );
}

/*!
    \details Return a full path of path
    \param path The path to make full
*/
QString pMenuBar::absoluteScope( const QString& path )
{
    QString fPath = QString( path ).prepend( groupPrefix );
    
    return mActionsManager->fixedPath( fPath );
}

QString pMenuBar::relativeScope( const QString& path )
{
    QString mPath = mActionsManager->fixedPath( path );
    
    if ( mPath.startsWith( groupPrefix ) )
    {
        return mPath.mid( groupPrefix.length() );
    }
    
    QString prf = groupPrefix.left( groupPrefix.length() -1 );
    
    if ( mPath.startsWith( prf ) )
    {
        return mPath.mid( prf.length() );
    }
    
    return mPath;
}

QString pMenuBar::normalizedKey( const QString& key )
{
    QString r = key;
    int i = 0;
    
    while ( i < r.size() )
    {
        while ( r.at( i ) == QLatin1Char( '/' ) )
        {
            r.remove( i, 1 );
            
            if ( i == r.size() )
            {
                goto after_loop;
            }
        }
        while ( r.at( i ) != QLatin1Char( '/' ) )
        {
            ++i;
            
            if ( i == r.size() )
            {
                return r;
            }
        }
        
        ++i; // leave the slash alone
    }

after_loop:
    if ( !r.isEmpty() )
    {
        r.truncate( i -1 ); // remove the trailing slash
    }
    
    return r;
}

void pMenuBar::beginGroupOrArray( const pGroupPath& group )
{
    groupStack.push( group );
    
    if ( !group.name().isEmpty() )
    {
        groupPrefix += group.name();
        groupPrefix += QLatin1Char( '/' );
    }
}

/*!
    \details Begin a \c group
    \see QSettings::beginGroup()
*/
void pMenuBar::beginGroup( const QString& group )
{
    beginGroupOrArray( pGroupPath( normalizedKey( group ) ) );
}

/*!
    \details Return the current group
    \see QSettings::group()
*/
QString pMenuBar::group() const
{
    return groupPrefix.left( groupPrefix.size() -1 );
}

/*!
    \details End a group
    \see QSettings::endGroup()
*/
void pMenuBar::endGroup()
{
    if ( groupStack.isEmpty() )
    {
        qWarning( "pMenuBar::endGroup: No matching beginGroup()" );
        return;
    }

    pGroupPath g = groupStack.pop();
    int len = g.toString().size();
    
    if ( len > 0 )
    {
        groupPrefix.truncate( groupPrefix.size() -( len +1 ) );
    }

    if ( g.isArray() )
    {
        qWarning( "pMenuBar::endGroup: Expected endArray() instead" );
    }
}

/*!
    \details Return the default ShortcutContext used by actions created by the class
*/
Qt::ShortcutContext pMenuBar::defaultShortcutContext() const
{
    return mDefaultShortcutContext;
}

/*!
    \details Set the default ShortcutContext used by actions created by the class
    \param context The default ShortcutContext
*/
void pMenuBar::setDefaultShortcutContext( Qt::ShortcutContext context )
{
    mDefaultShortcutContext = context;
}

/*!
    \details Return the pActionsManager used by this pMenuBar
*/
pActionsManager* pMenuBar::actionsManager() const
{
    return mActionsManager;
}

/*!
    \details Return a QMenu at \c path.
    \details If the path don't exists, the menu is created and
    \details title and icon are used as meu properties.
    \param path The QMenu path to get
    \param title The menu title
    \param icon The menu icon
*/
QMenu* pMenuBar::menu( const QString& path, const QString& title, const QIcon& icon )
{
    QString fPath = absoluteScope( path );
    
    if ( !mMenus.contains( fPath ) )
    {
        QStringList parts = fPath.split( "/" );
        QString curPath;
        
        for ( int i = 0; i < parts.count(); i++ )
        {
            curPath += "/" +parts.at( i );
            
            if ( curPath[ 0 ] == '/' )
            {
                curPath.remove( 0, 1 );
            }
            
            if ( !mMenus.contains( curPath ) )
            {
                QMenu* mnu = 0;
                
                if ( curPath.contains( '/' ) )
                {
                    const QString parentPath = curPath.left( curPath.lastIndexOf( '/' ) );
                    mnu = mMenus[ parentPath ]->addMenu( parts.at( i ) );
                }
                else
                {
                    mnu = addMenu( parts.at( i ) );
                }
                
                mMenus[ curPath ] = mnu;
                mMenus[ curPath ]->setObjectName( parts.at( i ) );
                mMenus[ curPath ]->setTitle( parts.at( i ) );
            }
        }
    }
    
    QMenu* mnu = mMenus[ fPath ];
    
    if ( !title.isEmpty() && mnu->title() != title )
    {
        mnu->setTitle( title );
        
        fPath = mActionsManager->fixedPath( path );
        if (!fPath.contains( '/' ) )
        {
            mActionsManager->setPathPartTranslation( fPath, title );
        }
    }
    
    if ( !icon.isNull() && mnu->icon().cacheKey() != icon.cacheKey() )
    {
        mnu->setIcon( icon );
    }
    
    return mnu;
}

QAction* pMenuBar::action( const QString& path, const QString& text, const QIcon& icon, const QString& shortcut, const QString& toolTip )
{
    QString fPath = absoluteScope( path );
    QString aName = fPath.mid( fPath.lastIndexOf( '/' ) +1 );
    QString mPath;

    if ( fPath.contains( '/' ) )
    {
        mPath = fPath.mid( 0, fPath.lastIndexOf( '/' ) );
    }
    
    // get action
    QAction* action = mActionsManager->action( mPath, aName );

    // create action if needed
    if ( !action )
    {
        // create actions
        action = mActionsManager->newAction( mPath, shortcut, aName );
        
        // check for separator
        if ( aName.contains( QRegExp( "^aseparator\\d{1,2}$", Qt::CaseInsensitive ) ) )
        {
            action->setSeparator( true );
        }
        
        // setup action
        action->setShortcutContext( mDefaultShortcutContext );
        
        if ( !text.isEmpty() )
        {
            action->setText( text );
        }
        
        if ( !icon.isNull() )
        {
            action->setIcon( icon );
        }
        
        if ( !toolTip.isEmpty() )
        {
            action->setStatusTip( toolTip );
        }

        if ( !toolTip.isEmpty() )
        {
            action->setToolTip( toolTip );
        }
        
        // add action to menu
        menu( relativeScope( mPath ) )->addAction( action );
    }

    // return action
    return action;
}

void pMenuBar::addAction( const QString& path, QAction* action )
{
    Q_ASSERT( action );
    
    if ( mActionsManager->actions().contains( action ) )
    {
        return;
    }
    
    QMenu* mnu = menu( path );
    
    action->setShortcutContext( mDefaultShortcutContext );
    pActionsManager::setActionPath( action, absoluteScope( path ) );
    pActionsManager::setActionsManager( action, mActionsManager );
    
    mnu->addAction( action );
}

void pMenuBar::clearMenu( const QString& path )
{
    const QString fPath = absoluteScope( path );
    QMenu* mnu = mMenus.value( fPath );
    
    if ( mnu )
    {
        mnu->clear();
        
        foreach ( QAction* action, mActionsManager->actions( fPath ) )
        {
            if ( action->associatedWidgets().isEmpty() )
            {
                delete action;
            }
        }
    }
}

void pMenuBar::deleteMenu( const QString& _path )
{
    const QString fPath = absoluteScope( _path );
    QMenu* mnu = mMenus.value( fPath );
    
    if ( mnu )
    {
        QStringList paths;
        
        // get menu and sub menus
        foreach ( const QString& path, mMenus.keys() ) {
            if ( path.startsWith( fPath ) ) {
                paths << path;
            }
        }
        
        // sort so sub menu are deleted before parent menu
        qSort( paths.begin(), paths.end(), qGreater<QString>() );
        
        // delete menus
        foreach ( const QString& path, paths ) {
            clearMenu( path );
            delete mMenus.take( path );
        }
    }
}

void pMenuBar::setMenuEnabled( QMenu* mnu, bool enabled )
{
    if ( mnu )
    {
        foreach ( QAction* action, mnu->actions() )
        {
            action->setEnabled( enabled );
            
            if ( action->menu() )
            {
                setMenuEnabled( action->menu(), enabled );
            }
        }
        
        //mnu->menuAction()->setEnabled( enabled );
    }
}

QStringList pMenuBar::rootMenusPath() const
{
    QList<QAction*> actions = this->actions();
    QStringList menus;
    
    foreach ( QAction* action, actions ) {
        QMenu* menu = action->menu();
        
        if ( !menu || !mMenus.contains( menu->objectName() ) ) {
            continue;
        }
        
        menus << menu->objectName();
    }
    
    return menus;
}