From: Jean-Christophe Helary <jean.christophe.helary@traduction-libre.org>
To: Emacs developers <emacs-devel@gnu.org>
Subject: Re: Tabs (on macos)
Date: Sun, 1 Sep 2019 17:59:47 +0900 [thread overview]
Message-ID: <8B5D5445-8D19-4D80-8EC0-9AE3A7669F33@traduction-libre.org> (raw)
In-Reply-To: <87a7bpysm8.fsf@mail.linkov.net>
When building on macos 10.14:
cc nsterm.o outputs these error messages and the build fails:
nsterm.m:2771:26: warning: 'scrollRect:by:' is deprecated: first deprecated in macOS 10.14 - Use NSScrollView to achieve scrolling views.
[-Wdeprecated-declarations]
[FRAME_NS_VIEW (f) scrollRect: src by: delta];
^
/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:260:1: note: 'scrollRect:by:' has been explicitly marked deprecated here
- (void)scrollRect:(NSRect)rect by:(NSSize)delta NS_DEPRECATED_MAC(10_0, 10_14, "Use NSScrollView to achieve scrolling views.");
^
nsterm.m:5442:29: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with
NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
NSFilenamesPboardType,
^
/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:323:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType NS_DEPRECATED_MAC(10_0, 10_14, "Create multiple pasteboard items with NSPasteboardTypeFileURL or ...
^
nsterm.m:6862:57: error: too few arguments to function call, expected 6, have 5
= window_from_coordinates (emacsframe, pt.x, pt.y, 0, 0);
~~~~~~~~~~~~~~~~~~~~~~~ ^
./window.h:1091:1: note: 'window_from_coordinates' declared here
extern Lisp_Object window_from_coordinates (struct frame *, int, int,
^
nsterm.m:8256:35: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with
NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations]
else if ([type isEqualToString: NSFilenamesPboardType])
^
/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:323:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType NS_DEPRECATED_MAC(10_0, 10_14, "Create multiple pasteboard items with NSPasteboardTypeFileURL or ...
^
nsterm.m:8271:35: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
else if ([type isEqualToString: NSURLPboardType])
^~~~~~~~~~~~~~~
NSPasteboardTypeURL
/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:332:32: note: 'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSPasteboardTypeURL", 10_0, 10_14);
^
nsterm.m:8280:35: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
else if ([type isEqualToString: NSStringPboardType]
^~~~~~~~~~~~~~~~~~
NSPasteboardTypeString
/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:322:32: note: 'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSPasteboardTypeString", 10_0, 10_14);
^
nsterm.m:8281:38: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations]
|| [type isEqualToString: NSTabularTextPboardType])
^~~~~~~~~~~~~~~~~~~~~~~
NSPasteboardTypeTabularText
/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:326:32: note: 'NSTabularTextPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType NS_DEPRECATED_WITH_REPLACEMENT_MAC("NSPasteboardTypeTabularText", 10_0, 10_14);
^
6 warnings and 1 error generated.
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2
Jean-Christophe Helary
-----------------------------------------------
http://mac4translators.blogspot.com @brandelune
> On Sep 1, 2019, at 5:45, Juri Linkov <juri@linkov.net> wrote:
>
> There is a long story of several attempts to implement tabs in Emacs.
> Finally now a complete implementation is available for these
> etc/TODO tasks:
>
> ** "Perspectives" are named persistent window configurations. We have
> had the window configuration mechanism in GNU Emacs since the
> beginning but we have never developed a good user interface to take
> advantage of them. Eclipse's user interface seems to be good.
> Perspectives also need to interact with the tabs.
>
> ** Having tabs above a window to switch buffers in it.
>
> Frame-local tabs represent window configurations.
> Window-local tabs represent window buffers.
>
> Using such data structures means there is no need in special handling
> of saving tabs in the desktop file - both persistence of frame tabs
> and persistence of window tabs is already supported by the existing
> code in master, because frame tabs are implemented as presentation of
> window configurations in the frame parameter saved by frameset as
> window states, and window tabs are implemented as presentation of
> window buffers already saved by frameset.
>
> Also both implementation of frame tabs and implementation of
> window tabs doesn't require using hooks - frame-local tabs for
> window-configuration switching doesn't rely on hooks and
> window-local tabs for switching window-buffers doesn't use hooks:
> window-configuration-change-hook is not used, no hook
> window-size-change-functions, no buffer-list-update-hook, no
> post-command-hook is used, none of the hooks.
>
> All this makes the implementation as simple as possible,
> providing only code for displaying and manipulating the already
> existing data structures of window configurations and window buffers
> represented in the new display elements tab-bar and tab-line
> based on the existing elements tool-bar and header-line.
>
> The prefix '-bar' in tab-bar is by analogy with frame tool-bar, menu-bar.
> The prefix '-line' in tab-line is by analogy with window header-line, mode-line.
>
> The tab-bar is located above the tool-bar like in web browsers.
> The tab-line is located above the header-line
> that is more related to the current buffer.
>
> Frame-local horizontal interface elements are in this order:
> --- menu-bar ---
> --- tab-bar ---
> --- tool-bar ---
>
> Window-local horizontal interface elements are in this order:
> --- tab-line ---
> --- header-line ---
> --- mode-line ---
>
> The implementation of the tab-bar replicates the existing tool-bar.
> The implementation of the tab-line replicates the existing header-line.
>
> Tabs on the frame tab-bar represent window configurations.
> Tabs on the window tab-line represent window buffers: previous on the
> left side from the current tab (current-buffer) and next on the right.
>
> Clicking on the tab in the tab-bar selects its window configuration.
> Clicking on the tab in the tab-line selects its window buffer.
> Clicking on the close button closes the clicked tab.
>
> Keybindings for the tab-bar:
> C-TAB - switches to the next frame tab;
> S-C-TAB - switches to the previous frame tab.
> Clicking on the plus sign adds a new window configuration tab to the tab-bar.
>
> Keybindings for the tab-line:
> C-x <left> - switches to the previous window tab;
> C-x <right> - switches to the next window tab.
> Clicking on the plus sign adds a new buffer tab to the tab-line.
>
> 'C-x 6 2' creates a new frame-local tab;
> 'C-x 6 b' switches to buffer in another frame-local tab;
> 'C-x 6 f' and 'C-x 6 C-f' edit file in another frame-local tab.
>
> I invite everyone to try the new branch named 'feature/tabs'
> and to report all found problems.
>
> Authors of all packages that currently had no choice other than to
> misuse the header-line for displaying window tabs are welcome now to
> adapt their packages for displaying window tabs on the new dedicated
> tab-line that doesn't conflict with the header-line anymore.
> For example, I tried just to replace header-line-format with
> tab-line-format in the package awesome-tabs and the result
> shows two separate rows - tab-line and header-line of Info buffer:
>
> <tabs.png>
next prev parent reply other threads:[~2019-09-01 8:59 UTC|newest]
Thread overview: 181+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-31 20:45 Tabs Juri Linkov
2019-09-01 8:12 ` Tabs martin rudalics
2019-09-01 14:40 ` Tabs Eli Zaretskii
2019-09-01 19:57 ` Tabs Juri Linkov
2019-09-02 0:40 ` Tabs Stefan Kangas
2019-09-02 10:11 ` Tabs Elias Mårtenson
2019-09-02 11:16 ` Tabs Dmitry Gutov
2019-09-02 19:27 ` Tabs Juri Linkov
2019-09-03 5:21 ` Tabs Jean Louis
2019-09-03 19:40 ` Tabs Juri Linkov
2019-09-03 20:14 ` Tabs Jean Louis
2019-09-02 19:17 ` Tabs Juri Linkov
2019-09-03 5:45 ` Tabs Yuri Khan
2019-09-03 19:45 ` Tabs Juri Linkov
2019-09-15 16:44 ` Tabs Stefan Kangas
2019-09-15 21:17 ` Tabs Juri Linkov
2019-09-02 2:29 ` Tabs Eli Zaretskii
2019-09-02 19:29 ` Tabs Juri Linkov
2019-09-03 2:27 ` Tabs Eli Zaretskii
2019-09-01 8:59 ` Jean-Christophe Helary [this message]
2019-09-01 20:11 ` Tabs (on macos) Juri Linkov
2019-09-16 13:41 ` Stefan Kangas
2019-09-16 20:33 ` Juri Linkov
2019-09-17 9:11 ` Stefan Kangas
2019-09-17 9:29 ` Stefan Kangas
2019-09-17 20:28 ` Juri Linkov
2019-09-17 22:38 ` Stefan Kangas
2019-09-20 18:26 ` Alan Third
2019-09-17 23:29 ` Stefan Kangas
2019-09-01 9:28 ` Tabs Alan Mackenzie
2019-09-01 19:18 ` Tabs Juri Linkov
2019-09-01 12:31 ` Tabs Ergus
2019-09-01 19:31 ` Tabs Juri Linkov
2019-09-02 4:51 ` Tabs Ergus
2019-09-02 19:33 ` Tabs Juri Linkov
2019-09-02 21:06 ` Tabs Stefan Monnier
2019-09-03 19:56 ` Tabs Juri Linkov
2019-09-03 2:30 ` Tabs Eli Zaretskii
2019-09-03 19:58 ` Tabs Juri Linkov
2019-09-03 5:39 ` Tabs Ergus
2019-09-05 22:24 ` Tabs Ergus
2019-09-07 20:14 ` Tabs Juri Linkov
2019-09-02 12:41 ` Tabs Stefan Monnier
2019-09-02 19:39 ` Tabs Juri Linkov
2019-09-02 21:03 ` Tabs Stefan Monnier
2019-09-03 12:22 ` Tabs Robert Pluim
2019-09-03 20:21 ` Tabs Juri Linkov
2019-09-15 19:21 ` Tabs Stefan Kangas
2019-09-15 21:32 ` Tabs Juri Linkov
2019-09-16 4:19 ` Tabs Yuri Khan
2019-09-16 20:59 ` Tabs Juri Linkov
2019-09-17 5:29 ` Tabs Yuri Khan
2019-09-17 20:37 ` Tabs Juri Linkov
2019-09-17 22:53 ` Tabs Drew Adams
2019-09-28 17:06 ` Tabs Stefan Kangas
2019-09-28 19:52 ` Tabs Juri Linkov
2019-10-20 22:38 ` Tabs Juri Linkov
2019-11-02 21:40 ` Tabs Juri Linkov
2019-09-19 23:57 ` Tabs Michael Heerdegen
2019-09-21 22:45 ` Tabs Juri Linkov
2019-09-22 0:31 ` Tabs Michael Heerdegen
2019-09-25 20:15 ` Tabs Juri Linkov
2019-10-05 13:57 ` Tabs Michael Heerdegen
2019-10-05 22:12 ` Tabs Juri Linkov
2019-10-06 8:22 ` Tabs Michael Heerdegen
2019-10-06 12:09 ` Tabs Michael Heerdegen
2019-10-06 15:16 ` Tabs Michael Heerdegen
2019-10-06 17:49 ` Tabs Eli Zaretskii
2019-10-06 17:55 ` Tabs Juri Linkov
2019-10-06 18:05 ` Tabs Juri Linkov
2019-10-06 18:58 ` Tabs Eli Zaretskii
2019-10-06 18:59 ` Tabs Eli Zaretskii
2019-10-06 19:08 ` Tabs Michael Heerdegen
2019-10-06 19:11 ` Tabs Juri Linkov
2019-10-06 19:21 ` Tabs Eli Zaretskii
2019-10-06 19:58 ` Tabs Juri Linkov
2019-10-07 16:05 ` Tabs Eli Zaretskii
2019-10-07 16:53 ` Tabs Michael Heerdegen
2019-10-07 17:12 ` Tabs Ergus
2019-10-07 18:24 ` Tabs Eli Zaretskii
2019-10-07 19:28 ` Tabs Ergus
2019-10-08 7:42 ` Tabs Eli Zaretskii
2019-10-08 8:56 ` Tabs Ergus
2019-10-08 9:18 ` Tabs Eli Zaretskii
2019-10-08 13:58 ` Tabs Eli Zaretskii
2019-10-08 16:00 ` Tabs Ergus
2019-10-08 16:18 ` Tabs Eli Zaretskii
2019-10-08 16:40 ` Tabs Ergus
2019-10-08 17:03 ` Tabs Eli Zaretskii
2019-10-08 23:43 ` Tabs Ergus
2019-10-09 8:37 ` Tabs Eli Zaretskii
2019-10-09 10:39 ` Tabs Ergus
2019-10-09 11:35 ` Tabs Eli Zaretskii
2019-10-09 12:05 ` Tabs Ergus
2019-10-09 12:18 ` Tabs Eli Zaretskii
2019-10-09 12:32 ` Tabs Eli Zaretskii
2019-10-09 18:12 ` Tabs martin rudalics
2019-10-09 18:46 ` Tabs Eli Zaretskii
2019-10-10 9:15 ` Tabs martin rudalics
2019-10-10 9:59 ` Tabs Eli Zaretskii
2019-10-10 10:38 ` Tabs martin rudalics
2019-10-10 11:33 ` Tabs Eli Zaretskii
2019-10-10 11:53 ` Tabs Eli Zaretskii
2019-10-10 14:58 ` Tabs martin rudalics
2019-10-09 12:36 ` Tabs Eli Zaretskii
2019-10-09 13:55 ` Tabs Ergus
2019-10-09 14:21 ` Tabs Eli Zaretskii
2019-10-09 15:15 ` Tabs Ergus
2019-10-09 15:35 ` Tabs Eli Zaretskii
2019-10-10 11:52 ` Tabs Eli Zaretskii
2019-10-10 13:12 ` Tabs Ergus
2019-10-10 13:54 ` Tabs Eli Zaretskii
2019-10-10 14:19 ` Tabs Ergus
2019-10-10 15:03 ` Tabs Eli Zaretskii
2019-10-10 15:35 ` Tabs martin rudalics
2019-10-10 15:46 ` Tabs Ergus
2019-10-10 18:14 ` Tabs martin rudalics
2019-10-10 18:26 ` Tabs Eli Zaretskii
2019-10-11 8:18 ` Tabs martin rudalics
2019-10-11 9:16 ` Tabs Eli Zaretskii
2019-10-16 9:16 ` Tabs martin rudalics
2019-10-10 13:29 ` Tabs Ergus
2019-10-10 13:47 ` Tabs Eli Zaretskii
2019-10-10 14:15 ` Tabs Ergus
2019-10-10 14:40 ` Tabs Ergus
2019-10-10 15:11 ` Tabs Eli Zaretskii
2019-10-10 20:54 ` Tabs Juri Linkov
2019-10-11 7:08 ` Tabs Eli Zaretskii
2019-10-13 20:57 ` Tabs Juri Linkov
2019-10-09 22:37 ` Tabs Juri Linkov
2019-10-10 7:51 ` Tabs Eli Zaretskii
2019-10-10 22:35 ` Tabs Juri Linkov
2019-10-11 8:18 ` Tabs martin rudalics
2019-10-12 22:42 ` Tabs Juri Linkov
2019-10-13 8:16 ` Tabs martin rudalics
2019-10-14 18:02 ` Tabs martin rudalics
2019-10-14 18:29 ` Tabs Eli Zaretskii
2019-10-15 9:47 ` Tabs martin rudalics
2019-10-14 19:35 ` Tabs Juri Linkov
2019-10-14 21:17 ` Tabs T.V Raman
2019-10-14 21:53 ` Tabs Phil Sainty
2019-10-14 22:00 ` Tabs Juri Linkov
2019-10-14 22:36 ` Tabs T.V Raman
2019-10-15 20:39 ` Tabs Juri Linkov
2019-10-16 0:14 ` Tabs T.V Raman
2019-10-15 6:12 ` Tabs Eli Zaretskii
2019-10-15 9:47 ` Tabs martin rudalics
2019-10-15 17:45 ` Tabs Juri Linkov
2019-10-16 9:16 ` Tabs martin rudalics
2019-10-14 19:00 ` Tabs Juri Linkov
2019-10-15 9:47 ` Tabs martin rudalics
2019-10-11 9:20 ` Tabs Eli Zaretskii
2019-10-12 22:47 ` Tabs Juri Linkov
2019-10-13 6:51 ` Tabs Eli Zaretskii
2019-10-13 20:48 ` Tabs Juri Linkov
2019-10-13 21:09 ` Tabs Eli Zaretskii
2019-10-13 21:33 ` Tabs Juri Linkov
2019-10-14 8:24 ` Tabs Eli Zaretskii
2019-10-07 17:58 ` Tabs Eli Zaretskii
2019-10-07 19:11 ` Tabs Juri Linkov
2019-10-06 18:38 ` Tabs Michael Heerdegen
2019-10-06 19:03 ` Tabs Eli Zaretskii
2019-10-06 18:56 ` Tabs Eli Zaretskii
2019-10-08 19:15 ` Tabs Michael Heerdegen
2019-10-09 22:48 ` Tabs Juri Linkov
2019-10-10 11:06 ` Tabs Michael Heerdegen
2019-10-10 20:59 ` Tabs Juri Linkov
2019-10-13 9:32 ` Tabs Michael Heerdegen
2019-10-13 20:24 ` Tabs Juri Linkov
2019-10-15 14:42 ` Tabs Michael Heerdegen
2019-10-19 22:51 ` Tabs Juri Linkov
2019-10-25 11:19 ` Tabs Michael Heerdegen
2019-10-26 22:40 ` Tabs Juri Linkov
2019-10-29 19:09 ` Tabs Michael Heerdegen
2019-11-05 23:24 ` Tabs Juri Linkov
2019-11-08 18:45 ` Tabs Michael Heerdegen
2019-11-08 19:56 ` Tabs Michael Heerdegen
2019-11-12 21:31 ` Tabs Juri Linkov
2019-11-13 16:47 ` Tabs Michael Heerdegen
2019-11-13 22:10 ` Tabs Juri Linkov
2019-11-14 9:20 ` Tabs martin rudalics
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8B5D5445-8D19-4D80-8EC0-9AE3A7669F33@traduction-libre.org \
--to=jean.christophe.helary@traduction-libre.org \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.