mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-07 23:53:58 +02:00
Added main touchbar.
This commit is contained in:
parent
2b9cce2f23
commit
199c746216
3 changed files with 87 additions and 0 deletions
|
@ -901,6 +901,8 @@ PRIVATE
|
||||||
platform/mac/touchbar/mac_touchbar_audio.mm
|
platform/mac/touchbar/mac_touchbar_audio.mm
|
||||||
platform/mac/touchbar/mac_touchbar_common.h
|
platform/mac/touchbar/mac_touchbar_common.h
|
||||||
platform/mac/touchbar/mac_touchbar_common.mm
|
platform/mac/touchbar/mac_touchbar_common.mm
|
||||||
|
platform/mac/touchbar/mac_touchbar_main.h
|
||||||
|
platform/mac/touchbar/mac_touchbar_main.mm
|
||||||
platform/win/audio_win.cpp
|
platform/win/audio_win.cpp
|
||||||
platform/win/audio_win.h
|
platform/win/audio_win.h
|
||||||
platform/win/file_utilities_win.cpp
|
platform/win/file_utilities_win.cpp
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
This file is part of Telegram Desktop,
|
||||||
|
the official desktop application for the Telegram messaging service.
|
||||||
|
|
||||||
|
For license and copyright information please follow this link:
|
||||||
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#import <AppKit/NSTouchBar.h>
|
||||||
|
|
||||||
|
namespace Window {
|
||||||
|
class Controller;
|
||||||
|
} // namespace Window
|
||||||
|
|
||||||
|
namespace TouchBar::Main {
|
||||||
|
|
||||||
|
const auto kPinnedPanelItemIdentifier = @"pinnedPanel";
|
||||||
|
const auto kPopoverInputItemIdentifier = @"popoverInput";
|
||||||
|
const auto kPopoverPickerItemIdentifier = @"pickerButtons";
|
||||||
|
|
||||||
|
} // namespace TouchBar::Main
|
||||||
|
|
||||||
|
API_AVAILABLE(macos(10.12.2))
|
||||||
|
@interface TouchBarMain : NSTouchBar
|
||||||
|
- (id)init:(not_null<Window::Controller*>)controller
|
||||||
|
touchBarSwitches:(rpl::producer<>)touchBarSwitches;
|
||||||
|
@end
|
|
@ -0,0 +1,57 @@
|
||||||
|
/*
|
||||||
|
This file is part of Telegram Desktop,
|
||||||
|
the official desktop application for the Telegram messaging service.
|
||||||
|
|
||||||
|
For license and copyright information please follow this link:
|
||||||
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
|
*/
|
||||||
|
#include "platform/mac/touchbar/mac_touchbar_main.h"
|
||||||
|
|
||||||
|
#include "platform/mac/touchbar/items/mac_formatter_item.h"
|
||||||
|
#include "platform/mac/touchbar/items/mac_pinned_chats_item.h"
|
||||||
|
#include "platform/mac/touchbar/items/mac_scrubber_item.h"
|
||||||
|
#include "platform/mac/touchbar/mac_touchbar_common.h"
|
||||||
|
#include "window/window_controller.h"
|
||||||
|
#include "window/window_session_controller.h"
|
||||||
|
|
||||||
|
#import <AppKit/NSCustomTouchBarItem.h>
|
||||||
|
|
||||||
|
#ifndef OS_OSX
|
||||||
|
|
||||||
|
using namespace TouchBar::Main;
|
||||||
|
|
||||||
|
#pragma mark - TouchBarMain
|
||||||
|
|
||||||
|
@interface TouchBarMain()
|
||||||
|
@end // @interface TouchBarMain
|
||||||
|
|
||||||
|
@implementation TouchBarMain
|
||||||
|
|
||||||
|
- (id)init:(not_null<Window::Controller*>)controller
|
||||||
|
touchBarSwitches:(rpl::producer<>)touchBarSwitches {
|
||||||
|
self = [super init];
|
||||||
|
if (!self) {
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto *pin = [[[NSCustomTouchBarItem alloc]
|
||||||
|
initWithIdentifier:kPinnedPanelItemIdentifier] autorelease];
|
||||||
|
pin.view = [[[PinnedDialogsPanel alloc]
|
||||||
|
init:(&controller->sessionController()->session())
|
||||||
|
destroyEvent:std::move(touchBarSwitches)] autorelease];
|
||||||
|
|
||||||
|
auto *sticker = [[[StickerEmojiPopover alloc]
|
||||||
|
init:controller
|
||||||
|
identifier:kPopoverPickerItemIdentifier] autorelease];
|
||||||
|
|
||||||
|
auto *format = [[[TextFormatPopover alloc]
|
||||||
|
init:kPopoverInputItemIdentifier] autorelease];
|
||||||
|
|
||||||
|
self.templateItems = [NSSet setWithArray:@[pin, sticker, format]];
|
||||||
|
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end // @implementation TouchBarMain
|
||||||
|
|
||||||
|
#endif // OS_OSX
|
Loading…
Add table
Reference in a new issue