]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/searchlineedit_mac.mm
Qt: Menu: change icon quit(cross) -> exit
[vlc] / modules / gui / qt4 / util / searchlineedit_mac.mm
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the demonstration applications of the Qt Toolkit.
8 **
9 ** No Commercial Usage
10 ** This file contains pre-release code and may not be distributed.
11 ** You may use this file in accordance with the terms and conditions
12 ** contained in the Technology Preview License Agreement accompanying
13 ** this package.
14 **
15 ** GNU Lesser General Public License Usage
16 ** Alternatively, this file may be used under the terms of the GNU Lesser
17 ** General Public License version 2.1 as published by the Free Software
18 ** Foundation and appearing in the file LICENSE.LGPL included in the
19 ** packaging of this file.  Please review the following information to
20 ** ensure the GNU Lesser General Public License version 2.1 requirements
21 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22 **
23 ** In addition, as a special exception, Nokia gives you certain additional
24 ** rights.  These rights are described in the Nokia Qt LGPL Exception
25 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
26 **
27 ** If you have questions regarding the use of this file, please contact
28 ** Nokia at qt-info@nokia.com.
29 **
30 ****************************************************************************/
31
32 #include "searchlineedit.hpp"
33
34 #ifdef Q_WS_MAC
35
36 #include <Cocoa/Cocoa.h>
37
38 //![0]
39 SearchLineEdit::SearchLineEdit(QWidget *parent)
40     : QMacCocoaViewContainer(0, parent)
41 {
42     // Many Cocoa objects create temporary autorelease objects,
43     // so create a pool to catch them.
44     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
45
46     // Create the NSSearchField, set it on the QCocoaViewContainer.
47     NSSearchField *search = [[NSSearchField alloc] init];
48     setCocoaView(search);
49     [[search cell] setPlaceholderString:@"Search..."];
50
51     // Use a Qt menu for the search field menu.
52     // NSMenu *nsMenu = searchMenu->macMenu(0);
53     // [[search cell] setSearchMenuTemplate:nsMenu];
54
55     // Release our reference, since our super class takes ownership and we
56     // don't need it anymore.
57     [search release];
58
59     // Clean up our pool as we no longer need it.
60     [pool release];
61 }
62 //![0]
63
64 #endif // Q_WS_MAC