summaryrefslogtreecommitdiffstats
blob: 5c7207cd9fef92c338e2e8d4e4eb967eb0a35b17 (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
/*
 * Copyright (c) 2015-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <SwifTools/Dock/MacOSXDock.h>

#include <boost/lexical_cast.hpp>

#include <AppKit/AppKit.h>
#include <Cocoa/Cocoa.h>

#include <Swiften/Base/String.h>

namespace Swift {

MacOSXDock::MacOSXDock(CocoaApplication*) {
}

void MacOSXDock::setNumberOfPendingMessages(int i) {
    std::string label(i > 0 ? boost::lexical_cast<std::string>(i) : "");
    NSString *labelString = [[NSString alloc] initWithUTF8String: label.c_str()];
    [[NSApp dockTile] setBadgeLabel: labelString];
    [labelString release];
    [NSApp requestUserAttention: NSInformationalRequest];
}

}