WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
114729
[EFL][WK2] Support sub menu in ewk context menus
https://bugs.webkit.org/show_bug.cgi?id=114729
Summary
[EFL][WK2] Support sub menu in ewk context menus
Michal Pakula vel Rutka
Reported
2013-04-17 02:27:46 PDT
SSIA
Attachments
proposed patch
(6.78 KB, patch)
2013-04-18 02:05 PDT
,
Michal Pakula vel Rutka
no flags
Details
Formatted Diff
Diff
fixes
(7.52 KB, patch)
2013-04-23 23:58 PDT
,
Michal Pakula vel Rutka
no flags
Details
Formatted Diff
Diff
fixes
(8.86 KB, patch)
2013-04-24 22:52 PDT
,
Michal Pakula vel Rutka
no flags
Details
Formatted Diff
Diff
changed EwkContextMenu to EwkObject
(12.52 KB, patch)
2013-04-26 04:30 PDT
,
Michal Pakula vel Rutka
no flags
Details
Formatted Diff
Diff
patch
(10.20 KB, patch)
2013-05-15 04:37 PDT
,
Michal Pakula vel Rutka
no flags
Details
Formatted Diff
Diff
fixes after review
(10.62 KB, patch)
2013-05-17 04:38 PDT
,
Michal Pakula vel Rutka
no flags
Details
Formatted Diff
Diff
Show Obsolete
(5)
View All
Add attachment
proposed patch, testcase, etc.
Michal Pakula vel Rutka
Comment 1
2013-04-18 02:05:12 PDT
Created
attachment 198696
[details]
proposed patch
Mikhail Pozdnyakov
Comment 2
2013-04-23 01:52:23 PDT
Comment on
attachment 198696
[details]
proposed patch View in context:
https://bugs.webkit.org/attachment.cgi?id=198696&action=review
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:46 > + , m_subMenu()
this should be omitted, default ctor will be invoked anyway.
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:62 > + m_subMenu = adoptPtr(subMenu);
adopting of passing args in the ctor is opaque and error prone, argument is better to be PassOwnPtr<> and adopted on caller side.
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_private.h:61 > + EwkView* viewImpl() const { return m_viewImpl; }
ewkView() is better.
Mikhail Pozdnyakov
Comment 3
2013-04-23 01:55:37 PDT
Comment on
attachment 198696
[details]
proposed patch View in context:
https://bugs.webkit.org/attachment.cgi?id=198696&action=review
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:70 > + EwkContextMenu* subMenu() const { return m_subMenu.get(); }
don't think it should be const, you're returning class-owned data.
Michal Pakula vel Rutka
Comment 4
2013-04-23 23:58:24 PDT
Created
attachment 199394
[details]
fixes
Mikhail Pozdnyakov
Comment 5
2013-04-24 04:28:03 PDT
Comment on
attachment 199394
[details]
fixes View in context:
https://bugs.webkit.org/attachment.cgi?id=199394&action=review
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:49 > + return adoptPtr(new EwkContextMenuItem(type, action, title, checked, enabled, adoptPtr(subMenu), parentMenu));
who calls it? can create() function pass PassOwnPtr<EwkContextMenu> as well?
Michal Pakula vel Rutka
Comment 6
2013-04-24 05:08:13 PDT
Comment on
attachment 199394
[details]
fixes View in context:
https://bugs.webkit.org/attachment.cgi?id=199394&action=review
>> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:49 >> + return adoptPtr(new EwkContextMenuItem(type, action, title, checked, enabled, adoptPtr(subMenu), parentMenu)); > > who calls it? can create() function pass PassOwnPtr<EwkContextMenu> as well?
This create() is called by API functions: ewk_context_menu_item_new or new_with_submenu. I can move adoption of subMenu there (
http://trac.webkit.org/browser/trunk/Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp#L60
).
Michal Pakula vel Rutka
Comment 7
2013-04-24 22:52:59 PDT
Created
attachment 199620
[details]
fixes moved adoption of submenu pointer to ewk_context_menu_item.cpp
Mikhail Pozdnyakov
Comment 8
2013-04-25 08:44:19 PDT
Comment on
attachment 199620
[details]
fixes Agreed on IRC that menu is better to be shareable (ewk object)
Michal Pakula vel Rutka
Comment 9
2013-04-26 04:30:16 PDT
Created
attachment 199812
[details]
changed EwkContextMenu to EwkObject
Mikhail Pozdnyakov
Comment 10
2013-04-26 04:39:29 PDT
Comment on
attachment 199812
[details]
changed EwkContextMenu to EwkObject View in context:
https://bugs.webkit.org/attachment.cgi?id=199812&action=review
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:71 > + return Ewk_Context_Menu_Item::create(type, action, title, checked, enabled, adoptRef(subMenu)).leakPtr();
no need to adopt since it's shared now, right?
Michal Pakula vel Rutka
Comment 11
2013-05-15 04:37:59 PDT
Created
attachment 201817
[details]
patch changing EwkContextMenu to EwkObject moved to patch 116097
Mikhail Pozdnyakov
Comment 12
2013-05-17 01:27:50 PDT
Comment on
attachment 201817
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=201817&action=review
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:66 > + return Ewk_Context_Menu_Item::create(type, action, title, checked, enabled, PassRefPtr<EwkContextMenu>()).leakPtr();
it's better to keep '0'
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:73 > + return Ewk_Context_Menu_Item::create(type, action, title, checked, enabled, PassRefPtr<EwkContextMenu>(subMenuImpl)).leakPtr();
should be simply subMenuImpl
Mikhail Pozdnyakov
Comment 13
2013-05-17 01:37:48 PDT
Comment on
attachment 201817
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=201817&action=review
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:167 > + return const_cast<Ewk_Context_Menu_Item*>(item)->subMenu();
maybe Ewk_Context_Menu_Item should also be an EwkObject? and we probably should get rid of "ewk_defines.h" file
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:86 > EwkContextMenu* m_parentMenu;
shouldn't it be RefPtr also?
Chris Dumez
Comment 14
2013-05-17 01:48:17 PDT
Comment on
attachment 201817
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=201817&action=review
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:66 > + return Ewk_Context_Menu_Item::create(type, action, title, checked, enabled, PassRefPtr<EwkContextMenu>()).leakPtr();
I would prefer if we omit the submenu argument.
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:160 > return const_cast<Ewk_Context_Menu_Item*>(item)->parentMenu();
const_cast is not actually needed here. Do you mind fixing it at the same time?
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:49 > + static PassOwnPtr<EwkContextMenuItem> create(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Item_Action action, const char* title, Eina_Bool checked, Eina_Bool enabled, PassRefPtr<EwkContextMenu> subMenu, EwkContextMenu* parentMenu = 0)
Could you add a default value for the subMenu argument?
> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:72 > + EwkContextMenu* subMenu() { return m_subMenu.get(); }
I would make this getter const. Mikhail won't like it but it is consistent with parentMenu() above and it avoids the const_cast() in the caller.
Michal Pakula vel Rutka
Comment 15
2013-05-17 04:00:13 PDT
Comment on
attachment 201817
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=201817&action=review
>>> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:66 >>> + return Ewk_Context_Menu_Item::create(type, action, title, checked, enabled, PassRefPtr<EwkContextMenu>()).leakPtr(); >> >> it's better to keep '0' > > I would prefer if we omit the submenu argument.
I will change change ::create method, by adding default 0 value for submenu too.
>> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:73 >> + return Ewk_Context_Menu_Item::create(type, action, title, checked, enabled, PassRefPtr<EwkContextMenu>(subMenuImpl)).leakPtr(); > > should be simply subMenuImpl
ok
>> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:160 >> return const_cast<Ewk_Context_Menu_Item*>(item)->parentMenu(); > > const_cast is not actually needed here. Do you mind fixing it at the same time?
to be removed
>> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item.cpp:167 >> + return const_cast<Ewk_Context_Menu_Item*>(item)->subMenu(); > > maybe Ewk_Context_Menu_Item should also be an EwkObject? and we probably should get rid of "ewk_defines.h" file
Will be it okay to do it in the next patch?
>> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:72 >> + EwkContextMenu* subMenu() { return m_subMenu.get(); } > > I would make this getter const. Mikhail won't like it but it is consistent with parentMenu() above and it avoids the const_cast() in the caller.
OK, I will change it to const and remove const_cast from both *menu_get functions.
>> Source/WebKit2/UIProcess/API/efl/ewk_context_menu_item_private.h:86 >> EwkContextMenu* m_parentMenu; > > shouldn't it be RefPtr also?
I will change it to RefPtr too.
Michal Pakula vel Rutka
Comment 16
2013-05-17 04:38:45 PDT
Created
attachment 202061
[details]
fixes after review
Chris Dumez
Comment 17
2013-05-17 04:54:07 PDT
Comment on
attachment 202061
[details]
fixes after review Looks fine. r=me but please let Mikhail take a final look before landing.
Michal Pakula vel Rutka
Comment 18
2013-05-17 06:07:39 PDT
Comment on
attachment 202061
[details]
fixes after review Mikhail could you take a look and set cq+ if the patch is good?
WebKit Commit Bot
Comment 19
2013-05-17 06:46:01 PDT
Comment on
attachment 202061
[details]
fixes after review Clearing flags on attachment: 202061 Committed
r150254
: <
http://trac.webkit.org/changeset/150254
>
WebKit Commit Bot
Comment 20
2013-05-17 06:46:05 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug