Welcome Guest! To enable all features please Login. New Registrations are disabled.

Notification

Icon
Error

Login


Options
Go to last post Go to first unread
Offline andrbig77  
#1 Posted : 07 December 2018 18:34:48(UTC)
andrbig77


Rank: Advanced Member

Groups: Registered
Joined: 07/12/2018(UTC)
Posts: 44
Man
Germany

Was thanked: 1 time(s) in 1 post(s)
Screenshot1.pngДобрый день уважаемые эксперты Smath Studio,

ничего если я обращаюсь здесь на русском языке?

Я начинающий пользователь и у меня есть пару вопросов по 'usability'...
подскажите пожалуйста, как изменить или сгруппировать расположение Plugins-аплеттов меню в 'Insert' ?
Дело в том что у моего ноутбука разрешение экрана установлено по максиму, которое позволяет видяха, но не все менюшки помещаются в размер экрана по вертикали.

Или есть как то возможность сгруппировать меню например плагина/ов "Maple" + "Maple_Plot" а одну директорию -> Maple?


Тоже самое с менюшками "Control" + "Controlbox" + "Chexbox" -> В одну директорию / подменю скажем так так же в "Control" ?

Благодарствую за ваш труд!
С уважением Андрей.

Wanna join the discussion?! Login to your SMath Studio Forum forum account. New Registrations are disabled.

Offline Davide Carpi  
#2 Posted : 07 December 2018 18:49:36(UTC)
Davide Carpi


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 13/01/2012(UTC)
Posts: 2,647
Man
Italy
Location: Italy

Was thanked: 1329 time(s) in 875 post(s)
Hello,

this is driven by the plugin settings before compiling, thus you have to ask it to each developer or alternatively download the sources and do the job by yourself, modifying the GetContextMenuItems(SessionProfile) method of IPluginCustomRegion interface and compiling for your own use Good

Edited by user 07 December 2018 18:54:34(UTC)  | Reason: Not specified

If you like my plugins consider to support SMath Studio buying a plan; to offer me a coffee: paypal.me/dcprojects
Offline uni  
#3 Posted : 07 December 2018 19:20:57(UTC)
uni


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 10/11/2010(UTC)
Posts: 1,494
Man
Russian Federation

Was thanked: 1274 time(s) in 745 post(s)
Он написал, что можно попросить это сделать авторов плагинов. Я рекомендую убрать пункты, которые вряд ли понадобятся, например: 3D Plot, Control, ScrollBarEx, NPlot, Modeller - эти плагины специфические или ещё не до конца доработаны.
Russia ☭ forever
Viacheslav N. Mezentsev
Offline Davide Carpi  
#4 Posted : 08 December 2018 04:08:44(UTC)
Davide Carpi


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 13/01/2012(UTC)
Posts: 2,647
Man
Italy
Location: Italy

Was thanked: 1329 time(s) in 875 post(s)
BTW for devs who wants to join their regions under "Plot" folder, that's the way to do it properly (localization aware):

Code:
        public MenuButton[] GetMenuItems(SessionProfile sessionProfile)
        {
            var myMenuButton = new MenuButton("my plot", ...);
            // ...

            var plotFolder = new MenuButton(sessionProfile.CurrentLanguage.StringsGUI[151]);
            plotFolder.AppendChild(myMenuButton);

            return new[] { plotFolder };
        }

Edited by user 08 December 2018 04:11:16(UTC)  | Reason: Not specified

If you like my plugins consider to support SMath Studio buying a plan; to offer me a coffee: paypal.me/dcprojects
thanks 1 user thanked Davide Carpi for this useful post.
on 15/01/2019(UTC)
Offline andrbig77  
#5 Posted : 10 December 2018 12:55:43(UTC)
andrbig77


Rank: Advanced Member

Groups: Registered
Joined: 07/12/2018(UTC)
Posts: 44
Man
Germany

Was thanked: 1 time(s) in 1 post(s)
Davide, thank you very much for your help!
Viacheslav N. Mezentsev, cпасибо за ответ и комментарии!
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.