- 论坛徽章:
- 0
|
20楼什么意思?我在windows下开发,不懂so,但即便so中不能有界面代码,谁也没有强迫你把用户界面部分放到插件中,写在core中也没问题啊! 下面是用C#实现的,但用C++也没有什么太大的差别,无非是没有反射,用工厂就可以了。
XML声明
<plugin
id="Workbench"
name="Workbench"
class="Workbench.WorkbenchPlugin"
version="1.0.0">
<assemblies>
<assembly path="..\..\bin\Debug\Workbench.dll"/>
</assemblies>
<extension-point id="Workbench.Actions"/>
<extension-point id="Workbench.KeyBinding"/>
<extension
point="Runtime.AutoStartCommand"
id="Workbench.WorkbenchPlugin">
<command class="Workbench.WorkbenchPlugin" order="0"/>
</extension>
<extension point="Workbench.Actions">
<action-set target="Workbench">
<menu-path path="File" label="$FileLabel"/>
<menu-path path="View" label="$ViewLabel"/>
<menu-path
path="File.New"
label="$File.NewLabel"
group="FileGroup"
icon=".\icons\etool16\copy_edit.gif"/>
<action
id="Workbench.File.New.CreateNewRenderView"
class="Workbench.CreateNewRenderView"
group="FileGroup"
label="$File.New.CreateNewRenderViewLabel"
icon=".\icons\etool16\new_wiz.gif"
tooltip="$File.New.CreateNewRenderViewTooltip"
menu-path="File.New"
toolbar-contributor="true"/>
<action
id="Workbench.File.OpenRecentFile"
class="Workbench.OpenRecentFileCommand"
group="FileGroup"
style="pulldown"
label="$File.OpenRecentFileLabel"
icon=".\icons\obj16\activity_category.gif"
tooltip="$File.OpenRecentFileTooltip"
menu-path="File"
toolbar-contributor="true"/>
<action
id="Workbench.File.Exit"
class="Workbench.ExitCommand"
group="ApplicationControlGroup"
style="push"
label="$File.ExitLabel"
icon=".\icons\etool16\export_wiz.gif"
tooltip="$File.ExitDolphinTooltip"
menu-path="File"
toolbar-contributor="false"
after="*"/>
<action
id="Workbench.View.ShowFileExplorerPallete"
class="Workbench.ShowFileExplorerCommand"
group="Workbench.View.ShowPalletes"
style="toogle"
label="$View.ShowFileExplorerPalleteLabel"
icon=".\icons\etool16\new_fastview.gif"
tooltip="$View.ShowFileExplorerPalleteTooltip"
menu-path="View"
toolbar-contributor="true">
<conditional failed-action="Nothing" successed-action="Check">
<condition pallete="Workbench.FileExplorerPalletePage" property="visible" value="true"/>
</conditional>
</action>
</action-set>
</extension>
<extension point="Workbench.PalletePage">
<page id="Workbench.FileExplorerPalletePage"
title="FileExplorer"
class="Workbench.FileExplorerPalletePage"/>
</extension>
<extension point="Workbench.KeyBinding">
<binding key="Ctrl+E" action="Workbench.File.Exit"/>
<binding key="Ctrl+F" action="Workbench.View.ShowFileExplorerPallete"/>
</extension>
</plugin> |
实际效果
file:///C:/Documents%20and%20Settings/ysm/%E6%A1%8C%E9%9D%A2/a.bmp
file:///C:/Documents%20and%20Settings/ysm/%E6%A1%8C%E9%9D%A2/2.bmp
file:///C:/Documents%20and%20Settings/ysm/%E6%A1%8C%E9%9D%A2/3.bmp
[ 本帖最后由 bidongliang 于 2009-6-27 09:50 编辑 ] |
-
a.jpg
(9.95 KB, 下载次数: 126)
-
2.jpg
(16.27 KB, 下载次数: 121)
-
3.jpg
(28.4 KB, 下载次数: 119)
|