Stop Parts from being detachable
up vote
0
down vote
favorite
I would like to stop Parts
from being detachable in Eclipse RCP 4.
Currently if I right click on a Part
I can select detach. From this I can then close the tab even if the Part
isn't Closeable
. In RCP 3 when a detached View
is closed it would then return back to its original location but now it closes completely.
Structure
Part Config
How can I remove the option to detach a Part
?
Also how can I stop a detached Part
from being closed or make it return to its original location?
java eclipse-rcp rcp
add a comment |
up vote
0
down vote
favorite
I would like to stop Parts
from being detachable in Eclipse RCP 4.
Currently if I right click on a Part
I can select detach. From this I can then close the tab even if the Part
isn't Closeable
. In RCP 3 when a detached View
is closed it would then return back to its original location but now it closes completely.
Structure
Part Config
How can I remove the option to detach a Part
?
Also how can I stop a detached Part
from being closed or make it return to its original location?
java eclipse-rcp rcp
To remove the menu option you would have to override the stack renderer to do this - which is fairly straightforward except that you have to duplicate some of the existing code. The other option is to not persist the application model and always start with the original design.
– greg-449
Nov 8 at 11:35
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I would like to stop Parts
from being detachable in Eclipse RCP 4.
Currently if I right click on a Part
I can select detach. From this I can then close the tab even if the Part
isn't Closeable
. In RCP 3 when a detached View
is closed it would then return back to its original location but now it closes completely.
Structure
Part Config
How can I remove the option to detach a Part
?
Also how can I stop a detached Part
from being closed or make it return to its original location?
java eclipse-rcp rcp
I would like to stop Parts
from being detachable in Eclipse RCP 4.
Currently if I right click on a Part
I can select detach. From this I can then close the tab even if the Part
isn't Closeable
. In RCP 3 when a detached View
is closed it would then return back to its original location but now it closes completely.
Structure
Part Config
How can I remove the option to detach a Part
?
Also how can I stop a detached Part
from being closed or make it return to its original location?
java eclipse-rcp rcp
java eclipse-rcp rcp
asked Nov 8 at 10:33
Michael
316418
316418
To remove the menu option you would have to override the stack renderer to do this - which is fairly straightforward except that you have to duplicate some of the existing code. The other option is to not persist the application model and always start with the original design.
– greg-449
Nov 8 at 11:35
add a comment |
To remove the menu option you would have to override the stack renderer to do this - which is fairly straightforward except that you have to duplicate some of the existing code. The other option is to not persist the application model and always start with the original design.
– greg-449
Nov 8 at 11:35
To remove the menu option you would have to override the stack renderer to do this - which is fairly straightforward except that you have to duplicate some of the existing code. The other option is to not persist the application model and always start with the original design.
– greg-449
Nov 8 at 11:35
To remove the menu option you would have to override the stack renderer to do this - which is fairly straightforward except that you have to duplicate some of the existing code. The other option is to not persist the application model and always start with the original design.
– greg-449
Nov 8 at 11:35
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53205912%2fstop-parts-from-being-detachable%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
To remove the menu option you would have to override the stack renderer to do this - which is fairly straightforward except that you have to duplicate some of the existing code. The other option is to not persist the application model and always start with the original design.
– greg-449
Nov 8 at 11:35