├── docking-frames-core ├── guide │ ├── faq.bbl │ ├── guide.bbl │ ├── faq.dvi │ ├── faq.pdf │ ├── guide.pdf │ ├── drawing.odg │ ├── guide │ │ ├── read.png │ │ └── formats.png │ ├── guide.blg │ └── faq.blg ├── guide2 │ ├── guide2.bbl │ ├── .directory │ ├── code.png │ ├── info.png │ ├── stop.png │ ├── class.png │ ├── design.png │ ├── guide2.pdf │ ├── basics │ │ ├── flap.png │ │ ├── split.png │ │ ├── stack.png │ │ ├── screen.png │ │ ├── HelloWorld.png │ │ ├── FlapDockStation.png │ │ ├── ScreenDockStation.png │ │ ├── SplitDockStation.png │ │ └── StackDockStation.png │ ├── stations │ │ ├── tab.png │ │ ├── flap.png │ │ ├── smallTabs.png │ │ ├── tabsOverview.png │ │ ├── inkscape_pasted_image_20120716_161214.png │ │ └── inkscape_pasted_image_20120718_110037.png │ ├── titles │ │ └── titles.png │ ├── actions │ │ └── actions.png │ ├── themes │ │ ├── theme_flat.png │ │ ├── theme_bubble.png │ │ ├── theme_default.png │ │ └── theme_eclipse.png │ ├── preferences │ │ ├── chapter.pdf │ │ ├── preferences.png │ │ └── properties.aux │ ├── guide2.aux │ ├── guide2.blg │ └── introduction │ │ └── chapter.tex.aux ├── version ├── tutorial.bat ├── tutorial.sh ├── .directory └── src │ ├── bibliothek │ ├── extension │ │ └── gui │ │ │ └── dock │ │ │ ├── util │ │ │ └── package-info.java │ │ │ ├── theme │ │ │ ├── eclipse │ │ │ │ ├── rex │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ ├── stack │ │ │ │ │ ├── tab4 │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── tab │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ └── displayer │ │ │ │ │ └── package-info.java │ │ │ ├── smooth │ │ │ │ └── package-info.java │ │ │ ├── bubble │ │ │ │ └── package-info.java │ │ │ ├── flat │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── station │ │ │ └── package-info.java │ │ │ ├── preference │ │ │ ├── editor │ │ │ │ └── package-info.java │ │ │ ├── model │ │ │ │ └── package-info.java │ │ │ ├── preferences │ │ │ │ ├── choice │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ ├── gui │ │ ├── package-info.java │ │ └── dock │ │ │ ├── title │ │ │ └── package-info.java │ │ │ ├── frontend │ │ │ └── package-info.java │ │ │ ├── action │ │ │ ├── package-info.java │ │ │ ├── dropdown │ │ │ │ └── package-info.java │ │ │ ├── popup │ │ │ │ └── package-info.java │ │ │ └── view │ │ │ │ └── package-info.java │ │ │ ├── station │ │ │ ├── flap │ │ │ │ ├── package-info.java │ │ │ │ ├── layer │ │ │ │ │ └── package-info.java │ │ │ │ └── button │ │ │ │ │ └── package-info.java │ │ │ ├── screen │ │ │ │ ├── package-info.java │ │ │ │ ├── layer │ │ │ │ │ └── package-info.java │ │ │ │ ├── magnet │ │ │ │ │ └── package-info.java │ │ │ │ └── window │ │ │ │ │ └── package-info.java │ │ │ ├── stack │ │ │ │ ├── package-info.java │ │ │ │ ├── menu │ │ │ │ │ └── package-info.java │ │ │ │ └── tab │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── layouting │ │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── split │ │ │ │ ├── package-info.java │ │ │ │ └── layer │ │ │ │ │ └── package-info.java │ │ │ ├── support │ │ │ │ └── package-info.java │ │ │ ├── span │ │ │ │ └── package-info.java │ │ │ └── layer │ │ │ │ └── package-info.java │ │ │ ├── themes │ │ │ ├── nostack │ │ │ │ └── package-info.java │ │ │ ├── basic │ │ │ │ ├── package-info.java │ │ │ │ └── action │ │ │ │ │ ├── buttons │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── menu │ │ │ │ │ └── package-info.java │ │ │ │ │ └── dropdown │ │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── border │ │ │ │ └── package-info.java │ │ │ ├── font │ │ │ │ └── package-info.java │ │ │ ├── icon │ │ │ │ └── package-info.java │ │ │ └── color │ │ │ │ └── package-info.java │ │ │ ├── util │ │ │ ├── package-info.java │ │ │ ├── property │ │ │ │ └── package-info.java │ │ │ ├── color │ │ │ │ └── package-info.java │ │ │ ├── font │ │ │ │ └── package-info.java │ │ │ ├── icon │ │ │ │ └── package-info.java │ │ │ ├── laf │ │ │ │ └── package-info.java │ │ │ ├── text │ │ │ │ └── package-info.java │ │ │ ├── swing │ │ │ │ └── package-info.java │ │ │ └── extension │ │ │ │ └── package-info.java │ │ │ ├── displayer │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── dockable │ │ │ └── package-info.java │ │ │ ├── perspective │ │ │ └── package-info.java │ │ │ ├── focus │ │ │ └── package-info.java │ │ │ ├── layout │ │ │ └── package-info.java │ │ │ ├── control │ │ │ ├── focus │ │ │ │ └── package-info.java │ │ │ ├── relocator │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── disable │ │ │ └── package-info.java │ │ │ ├── accept │ │ │ └── package-info.java │ │ │ ├── event │ │ │ └── package-info.java │ │ │ └── security │ │ │ └── package-info.java │ └── util │ │ ├── xml │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── filter │ │ └── package-info.java │ │ ├── container │ │ └── package-info.java │ │ └── workarounds │ │ └── package-info.java │ └── data │ └── bibliothek │ └── gui │ └── dock │ └── core │ ├── close.png │ ├── dockable.png │ ├── flap_auto.png │ ├── flap_east.png │ ├── flap_free.png │ ├── flap_hold.png │ ├── flap_north.png │ ├── flap_south.png │ ├── flap_west.png │ ├── dockStation.png │ ├── small_delete.png │ ├── bubble │ ├── close2.png │ ├── closex.png │ ├── renamex.png │ ├── replacex.png │ ├── flap_free2.png │ ├── flap_freex.png │ ├── flap_hold2.png │ ├── flap_holdx.png │ ├── split_maximize2.png │ ├── split_maximizex.png │ ├── split_normalize2.png │ ├── split_normalizex.png │ └── icons.ini │ ├── eclipse │ ├── closex.png │ ├── holdoff.png │ ├── holdon.png │ ├── maximize.png │ ├── normalize.png │ └── icons.ini │ ├── flap_direction.png │ ├── small_default.png │ ├── split_maximize.png │ ├── split_normalize.png │ └── locale │ ├── text_cs.properties │ ├── text_de.properties │ ├── text_es.properties │ ├── text_fr.properties │ ├── text_it.properties │ ├── text_ro.properties │ ├── text_sv.properties │ ├── text_tr.properties │ ├── text_vi.properties │ ├── text_hu_HU.properties │ ├── text_pt_BR.properties │ ├── text_ko.properties │ ├── text_pl_PL.properties │ ├── text_bs_BA.properties │ └── text_zh_CN.properties ├── docking-frames-common ├── guide │ ├── Guide.bbl │ ├── Guide.idx │ ├── Guide.ind │ ├── Guide.pdf │ ├── Transition.dvi │ ├── Transition.pdf │ ├── Guide.ilg │ └── Guide.blg ├── guide2 │ ├── guide2.bbl │ ├── .directory │ ├── class.png │ ├── code.png │ ├── info.png │ ├── stop.png │ ├── design.png │ ├── guide2.pdf │ ├── actions │ │ ├── actions.png │ │ ├── cmenu.png │ │ └── cdropdown.png │ ├── basics │ │ ├── app_with.png │ │ └── app_without.png │ ├── effects │ │ └── menus.png │ ├── pastedpic_02012009_130001.png │ ├── pastedpic_02012009_143658.png │ ├── pastedpic_02012009_144750.png │ ├── pastedpic_07222009_135517.png │ ├── pastedpic_07222009_140052.png │ ├── guide2.aux │ └── guide2.blg ├── src │ ├── bibliothek │ │ └── gui │ │ │ └── dock │ │ │ ├── facile │ │ │ ├── package-info.java │ │ │ ├── action │ │ │ │ └── package-info.java │ │ │ ├── station │ │ │ │ ├── split │ │ │ │ │ └── package-info.java │ │ │ │ └── screen │ │ │ │ │ └── package-info.java │ │ │ ├── lookandfeel │ │ │ │ └── package-info.java │ │ │ ├── mode │ │ │ │ ├── station │ │ │ │ │ └── package-info.java │ │ │ │ ├── action │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── status │ │ │ │ │ └── package-info.java │ │ │ └── menu │ │ │ │ └── package-info.java │ │ │ ├── common │ │ │ ├── action │ │ │ │ ├── predefined │ │ │ │ │ └── package-info.java │ │ │ │ ├── panel │ │ │ │ │ └── package-info.java │ │ │ │ ├── util │ │ │ │ │ └── package-info.java │ │ │ │ ├── core │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── layout │ │ │ │ └── package-info.java │ │ │ ├── theme │ │ │ │ ├── eclipse │ │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ └── color │ │ │ │ │ └── package-info.java │ │ │ ├── intern │ │ │ │ ├── ui │ │ │ │ │ └── package-info.java │ │ │ │ ├── font │ │ │ │ │ └── package-info.java │ │ │ │ ├── station │ │ │ │ │ └── package-info.java │ │ │ │ ├── action │ │ │ │ │ ├── panel │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── layout │ │ │ │ │ └── package-info.java │ │ │ │ └── color │ │ │ │ │ └── package-info.java │ │ │ ├── menu │ │ │ │ └── package-info.java │ │ │ ├── mode │ │ │ │ ├── station │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── event │ │ │ │ └── package-info.java │ │ │ ├── perspective │ │ │ │ ├── package-info.java │ │ │ │ └── mode │ │ │ │ │ └── package-info.java │ │ │ ├── preference │ │ │ │ └── package-info.java │ │ │ ├── location │ │ │ │ └── package-info.java │ │ │ └── group │ │ │ │ └── package-info.java │ │ │ └── support │ │ │ ├── util │ │ │ └── package-info.java │ │ │ ├── menu │ │ │ └── package-info.java │ │ │ ├── lookandfeel │ │ │ └── package-info.java │ │ │ ├── mode │ │ │ └── package-info.java │ │ │ └── package-info.java │ └── data │ │ └── bibliothek │ │ └── gui │ │ └── dock │ │ └── common │ │ ├── icons │ │ ├── rename.png │ │ ├── replace.png │ │ ├── maximize.png │ │ ├── minimize.png │ │ ├── normalize.png │ │ ├── bubble │ │ │ ├── close.png │ │ │ ├── free.png │ │ │ ├── free2.png │ │ │ ├── hold.png │ │ │ ├── hold2.png │ │ │ ├── close2.png │ │ │ ├── maximize.png │ │ │ ├── minimize.png │ │ │ ├── maximize2.png │ │ │ ├── minimize2.png │ │ │ ├── normalize.png │ │ │ ├── normalize2.png │ │ │ ├── externalize.png │ │ │ ├── externalize2.png │ │ │ ├── unexternalize.png │ │ │ ├── unexternalize2.png │ │ │ └── icons.ini │ │ ├── externalize.png │ │ ├── unexternalize.png │ │ ├── eclipse │ │ │ ├── maximize.png │ │ │ ├── minimize.png │ │ │ ├── normalize.png │ │ │ ├── externalize.png │ │ │ ├── unexternalize.png │ │ │ └── icons.ini │ │ └── icons.ini │ │ └── locale │ │ ├── common_cs.properties │ │ ├── common_de.properties │ │ ├── common_es.properties │ │ ├── common_fr.properties │ │ ├── common_ro.properties │ │ ├── common_sv.properties │ │ ├── common_tr.properties │ │ ├── common_vi.properties │ │ ├── common_hu_HU.properties │ │ ├── common_pt_BR.properties │ │ ├── common_bs_BA.properties │ │ ├── common_pl_PL.properties │ │ ├── common_ko.properties │ │ ├── common_bg_BG.properties │ │ └── common_zh_CN.properties └── testing │ └── bibliothek │ └── test │ ├── InspectionNodeListener.java │ ├── inspect │ └── NullInspectable.java │ └── Inspection.java ├── docking-frames-demo-paint ├── .gitignore └── src │ └── data │ └── bibliothek │ └── paint │ ├── icons │ ├── add.png │ ├── color.png │ ├── delete.png │ ├── eraser.png │ ├── list.png │ ├── show.png │ ├── zoomin.png │ ├── picture.png │ ├── zoomout.png │ ├── application.png │ └── icons.ini │ └── screenshot.png ├── docking-frames-ext-toolbar ├── .gitignore └── src │ └── data │ └── bibliothek │ └── gui │ └── toolbar │ ├── check.png │ ├── here.png │ ├── tool.png │ ├── preferences.png │ ├── expand_vertical.png │ ├── larger_vertical.png │ ├── shrink_vertical.png │ ├── expand_horizontal.png │ ├── larger_horizontal.png │ ├── shrink_horizontal.png │ ├── smaller_vertical.png │ ├── smaller_horizontal.png │ ├── expand_hover_vertical.png │ ├── larger_hover_vertical.png │ ├── shrink_hover_vertical.png │ ├── smaller_hover_vertical.png │ ├── expand_hover_horizontal.png │ ├── larger_hover_horizontal.png │ ├── shrink_hover_horizontal.png │ ├── smaller_hover_horizontal.png │ └── locale │ └── toolbar.properties ├── .gitattributes ├── docking-frames-ext-glass ├── repo │ └── kux │ │ └── glasslib │ │ ├── maven-metadata.xml.md5 │ │ ├── 1.0 │ │ ├── glasslib-1.0.jar.md5 │ │ ├── glasslib-1.0.pom.md5 │ │ ├── glasslib-1.0.jar.sha1 │ │ ├── glasslib-1.0.pom.sha1 │ │ ├── glasslib-1.0.jar │ │ └── glasslib-1.0.pom │ │ ├── maven-metadata.xml.sha1 │ │ └── maven-metadata.xml ├── libs │ └── glassLib │ │ └── glasslib.jar └── src │ └── glass │ └── eclipse │ └── theme │ └── images │ ├── maximize.png │ ├── minimize.png │ ├── normalize.png │ ├── pin_active.png │ ├── close_active.png │ ├── externalize.png │ ├── overflow_menu.png │ ├── unexternalize.png │ └── unpin_active.png ├── docking-frames-demo-notes ├── notes.properties └── src │ ├── data │ └── bibliothek │ │ └── notes │ │ ├── image.png │ │ ├── icons │ │ ├── clock.png │ │ ├── delete.png │ │ ├── pencil.png │ │ ├── flag_red.png │ │ ├── page_add.png │ │ ├── palette.png │ │ ├── choices │ │ │ ├── bin.png │ │ │ ├── bug.png │ │ │ ├── car.png │ │ │ ├── cd.png │ │ │ ├── cog.png │ │ │ ├── bell.png │ │ │ ├── bomb.png │ │ │ ├── book.png │ │ │ ├── brick.png │ │ │ ├── cart.png │ │ │ ├── coins.png │ │ │ ├── email.png │ │ │ ├── film.png │ │ │ ├── heart.png │ │ │ ├── money.png │ │ │ ├── music.png │ │ │ ├── anchor.png │ │ │ ├── attach.png │ │ │ ├── basket.png │ │ │ ├── calendar.png │ │ │ ├── camera.png │ │ │ ├── comments.png │ │ │ ├── computer.png │ │ │ ├── plugin.png │ │ │ ├── script.png │ │ │ ├── book_open.png │ │ │ ├── briefcase.png │ │ │ ├── calculator.png │ │ │ ├── chart_bar.png │ │ │ ├── chart_pie.png │ │ │ ├── controller.png │ │ │ ├── email_open.png │ │ │ ├── lightning.png │ │ │ ├── newspaper.png │ │ │ ├── telephone.png │ │ │ ├── television.png │ │ │ ├── emoticon_smile.png │ │ │ └── emoticon_tongue.png │ │ ├── flag_blue.png │ │ ├── flag_green.png │ │ ├── flag_orange.png │ │ ├── flag_pink.png │ │ ├── flag_purple.png │ │ ├── flag_yellow.png │ │ ├── page_copy.png │ │ ├── page_delete.png │ │ ├── color_swatch.png │ │ ├── folder_explore.png │ │ ├── application_view_list.png │ │ └── icons.ini │ │ ├── notes.properties │ │ └── description.txt │ └── bibliothek │ └── notes │ └── Application.java ├── docking-frames-demo-tutorial └── src │ ├── data │ └── tutorial │ │ ├── BasicsCommon.html │ │ ├── CommonHelloWorld.html │ │ ├── HelloWorld.html │ │ ├── Actions.png │ │ ├── Merger.png │ │ ├── Themes.png │ │ ├── UIColor.png │ │ ├── Combiner.png │ │ ├── DFCloseButton.html │ │ ├── DockTitle.png │ │ ├── GroupAction.html │ │ ├── Internal.png │ │ ├── Background.png │ │ ├── BorderModifier.html │ │ ├── Displayers.png │ │ ├── GroupAction.png │ │ ├── HelloWorld.png │ │ ├── MultiFrame.png │ │ ├── NewCStation.png │ │ ├── Placeholders.png │ │ ├── TheStations.png │ │ ├── Transparency.png │ │ ├── icons │ │ └── copy.png │ │ ├── BorderModifier.png │ │ ├── CommonInternal.png │ │ ├── DFCloseButton.png │ │ ├── DockTitle.html │ │ ├── StackTabLayout.png │ │ ├── CommonHelloWorld.png │ │ ├── CorePerspectives.png │ │ ├── GroupingDockables.png │ │ ├── HideCloseAction.png │ │ ├── MultipleDockables.png │ │ ├── PersistentLayout.png │ │ ├── SplitDockStation.png │ │ ├── DFPersistentLayout.png │ │ ├── PerspectivesHistory.png │ │ ├── SelectPerspectives.png │ │ ├── TitleWithTextField.png │ │ ├── EclipseLikeCloseButton.png │ │ ├── PerspectivesMultiple.png │ │ ├── SingleCDockableFactory.png │ │ ├── SplittingExternalized.png │ │ ├── TheStations.html │ │ ├── PerspectivesIntroduction.png │ │ ├── StackTabLayout.html │ │ ├── PerspectivesIntroduction.html │ │ ├── shadowsAndLight_GregMartin.jpg │ │ ├── PerspectivesMultiple.html │ │ ├── BasicsDockFrontend.html │ │ ├── Themes.html │ │ ├── Displayers.html │ │ ├── GuideCore.html │ │ ├── PerspectivesHistory.html │ │ ├── PuttingAside.html │ │ ├── NewCStation.html │ │ ├── Combiner.html │ │ ├── PersistentLayout.html │ │ ├── UIColor.html │ │ ├── MultiFrame.html │ │ ├── DFPersistentLayout.html │ │ ├── MultipleDockables.html │ │ ├── Background.html │ │ ├── SingleCDockableFactory.html │ │ ├── Internal.html │ │ ├── CommonInternal.html │ │ ├── HideCloseAction.html │ │ ├── Transparency.html │ │ ├── CorePerspectives.html │ │ ├── Merger.html │ │ ├── EclipseLikeCloseButton.html │ │ ├── SplittingExternalized.html │ │ ├── GuideCommon.html │ │ ├── SplitDockStation.html │ │ ├── OpeningEditors.html │ │ ├── Placeholders.html │ │ ├── TitleWithTextField.html │ │ ├── CommonAPI.html │ │ ├── BasicsCore.html │ │ └── Actions.html │ └── tutorial │ ├── support │ ├── sets │ │ ├── RootSet.java │ │ ├── CommonSet.java │ │ └── CoreSet.java │ ├── Tutorial.java │ ├── ColorIcon.java │ └── CopyCodeAction.java │ ├── dockFrontend │ └── basics │ │ └── BasicDockFrontendSet.java │ ├── common │ └── guide │ │ └── GuideCommonSet.java │ ├── TutorialExtension.java │ └── core │ └── guide │ └── GuideCoreSet.java ├── docking-frames-ext-toolbar-tutorial └── src │ ├── data │ └── tutorial │ │ ├── ToolbarCommonHelloWorld.html │ │ ├── ToolbarHelloWorld.html │ │ ├── ToolbarExpanding.png │ │ ├── ToolbarHelloWorld.png │ │ ├── ToolbarCustomization.png │ │ ├── WizardSplitDockStation.png │ │ ├── ToolbarCommonHelloWorld.png │ │ ├── ToolbarCommonPerspective.png │ │ ├── ToolbarCommonPerspective.html │ │ ├── WizardSplitDockStation.html │ │ ├── CommonToolbar.html │ │ └── CoreToolbar.html │ └── tutorial │ └── toolbar │ ├── ToolbarTutorialMain.java │ ├── common │ └── CommonToolbarTutorials.java │ └── core │ └── CoreToolbarTutorials.java ├── docking-frames-demo-help └── src │ ├── data │ └── bibliothek │ │ └── help │ │ ├── help.data │ │ ├── image.png │ │ └── icons │ │ ├── class.png │ │ ├── field.png │ │ ├── icon.png │ │ ├── redo.png │ │ ├── undo.png │ │ ├── content.png │ │ ├── method.png │ │ ├── minimize.png │ │ ├── package.png │ │ ├── hierarchy.png │ │ ├── interface.png │ │ ├── constructor.png │ │ └── icons.ini │ └── bibliothek │ └── help │ ├── control │ └── URListener.java │ └── Application.java ├── docking-frames-demo-chess └── src │ ├── data │ └── bibliothek │ │ └── chess │ │ ├── image.png │ │ └── icons │ │ ├── Chess_bdt16.png │ │ ├── Chess_bdt48.png │ │ ├── Chess_blt16.png │ │ ├── Chess_blt48.png │ │ ├── Chess_kdt16.png │ │ ├── Chess_kdt48.png │ │ ├── Chess_klt16.png │ │ ├── Chess_klt48.png │ │ ├── Chess_ndt16.png │ │ ├── Chess_ndt48.png │ │ ├── Chess_nlt16.png │ │ ├── Chess_nlt48.png │ │ ├── Chess_pdt16.png │ │ ├── Chess_pdt48.png │ │ ├── Chess_plt16.png │ │ ├── Chess_plt48.png │ │ ├── Chess_qdt16.png │ │ ├── Chess_qdt48.png │ │ ├── Chess_qlt16.png │ │ ├── Chess_qlt48.png │ │ ├── Chess_rdt16.png │ │ ├── Chess_rdt48.png │ │ ├── Chess_rlt16.png │ │ └── Chess_rlt48.png │ └── bibliothek │ └── chess │ └── model │ └── Player.java ├── docking-frames-demo-layouts └── src │ ├── data │ └── bibliothek │ │ └── commonLayouts │ │ ├── image.png │ │ └── icons │ │ ├── xml.png │ │ ├── binary.png │ │ ├── icon.png │ │ ├── load.png │ │ ├── add_factory.png │ │ ├── add_dockable.png │ │ ├── remove_dockable.png │ │ └── remove_factory.png │ └── bibliothek │ └── layouts │ ├── testing │ └── SingleTestFactory.java │ └── Application.java ├── launch ├── mvn-deploy.sh └── mvn-install.sh ├── docking-frames-demo-size-and-color └── src │ └── data │ └── bibliothek │ └── sizeAndColor │ ├── icon.png │ └── snapshot.png ├── docking-frames-demo-app └── src │ └── bibliothek │ └── demonstration │ └── Main.java ├── docking-frames-dist └── zip.xml ├── docking-frames-glass-dist └── zip.xml └── .gitignore /docking-frames-core/guide/faq.bbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docking-frames-common/guide/Guide.bbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docking-frames-common/guide/Guide.idx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docking-frames-common/guide/Guide.ind: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docking-frames-core/guide/guide.bbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docking-frames-core/guide2/guide2.bbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docking-frames-core/version: -------------------------------------------------------------------------------- 1 | 1.1.3p1 -------------------------------------------------------------------------------- /docking-frames-common/guide2/guide2.bbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docking-frames-demo-paint/.gitignore: -------------------------------------------------------------------------------- 1 | /config.xml 2 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/.gitignore: -------------------------------------------------------------------------------- 1 | /layout.xml 2 | -------------------------------------------------------------------------------- /docking-frames-core/tutorial.bat: -------------------------------------------------------------------------------- 1 | java -jar bin\docking-frames-demo-tutorial.jar -------------------------------------------------------------------------------- /docking-frames-core/tutorial.sh: -------------------------------------------------------------------------------- 1 | java -jar bin/docking-frames-demo-tutorial.jar 2 | -------------------------------------------------------------------------------- /docking-frames-core/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2010,5,24,9,5,13 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /docking-frames-core/guide2/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2010,2,14,15,4,8 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 05055b44da1c62a4fb48b15e1c48bebd -------------------------------------------------------------------------------- /docking-frames-common/guide2/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2010,8,7,9,45,51 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/1.0/glasslib-1.0.jar.md5: -------------------------------------------------------------------------------- 1 | 036a097531c1d4372d894c87e6c3bcae -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/1.0/glasslib-1.0.pom.md5: -------------------------------------------------------------------------------- 1 | b036ae79f863b5d7a2c0cb118d184db1 -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/1.0/glasslib-1.0.jar.sha1: -------------------------------------------------------------------------------- 1 | b4869fb7541986dec7ec694c82c85f2408ebadf1 -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/1.0/glasslib-1.0.pom.sha1: -------------------------------------------------------------------------------- 1 | 8f2ba000b3f8fb8a96f898d6707456ac695b670c -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- 1 | f1d7bc86eefb3edaded293893744e2e770d936fe -------------------------------------------------------------------------------- /docking-frames-core/guide/faq.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide/faq.dvi -------------------------------------------------------------------------------- /docking-frames-core/guide/faq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide/faq.pdf -------------------------------------------------------------------------------- /docking-frames-core/guide/guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide/guide.pdf -------------------------------------------------------------------------------- /docking-frames-core/guide2/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/code.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/info.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/stop.png -------------------------------------------------------------------------------- /docking-frames-common/guide/Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide/Guide.pdf -------------------------------------------------------------------------------- /docking-frames-common/guide2/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/class.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/code.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/info.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/stop.png -------------------------------------------------------------------------------- /docking-frames-core/guide/drawing.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide/drawing.odg -------------------------------------------------------------------------------- /docking-frames-core/guide2/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/class.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/design.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/guide2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/guide2.pdf -------------------------------------------------------------------------------- /docking-frames-common/guide2/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/design.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/guide2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/guide2.pdf -------------------------------------------------------------------------------- /docking-frames-core/guide/guide/read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide/guide/read.png -------------------------------------------------------------------------------- /docking-frames-common/guide/Transition.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide/Transition.dvi -------------------------------------------------------------------------------- /docking-frames-common/guide/Transition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide/Transition.pdf -------------------------------------------------------------------------------- /docking-frames-core/guide/guide/formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide/guide/formats.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/flap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/flap.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/split.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/stack.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/stations/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/stations/tab.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/notes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/notes.properties -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/screen.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/stations/flap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/stations/flap.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/titles/titles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/titles/titles.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/BasicsCommon.html: -------------------------------------------------------------------------------- 1 | 2 | Basic examples concerning the Common project. 3 | -------------------------------------------------------------------------------- /docking-frames-common/guide2/actions/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/actions/actions.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/actions/cmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/actions/cmenu.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/basics/app_with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/basics/app_with.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/effects/menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/effects/menus.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/actions/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/actions/actions.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/HelloWorld.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/themes/theme_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/themes/theme_flat.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/actions/cdropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/actions/cdropdown.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/preferences/chapter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/preferences/chapter.pdf -------------------------------------------------------------------------------- /docking-frames-core/guide2/stations/smallTabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/stations/smallTabs.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/themes/theme_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/themes/theme_bubble.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/CommonHelloWorld.html: -------------------------------------------------------------------------------- 1 | 2 | A hello world application using the common project. 3 | -------------------------------------------------------------------------------- /docking-frames-common/guide2/basics/app_without.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/basics/app_without.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/FlapDockStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/FlapDockStation.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/stations/tabsOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/stations/tabsOverview.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/themes/theme_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/themes/theme_default.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/themes/theme_eclipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/themes/theme_eclipse.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/libs/glassLib/glasslib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/libs/glassLib/glasslib.jar -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCommonHelloWorld.html: -------------------------------------------------------------------------------- 1 | This is a simple client using the toolbar extension. -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/ScreenDockStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/ScreenDockStation.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/SplitDockStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/SplitDockStation.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/basics/StackDockStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/basics/StackDockStation.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/preferences/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/preferences/preferences.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/HelloWorld.html: -------------------------------------------------------------------------------- 1 | This basic example is the smallest possible application using the framework. -------------------------------------------------------------------------------- /docking-frames-common/guide2/pastedpic_02012009_130001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/pastedpic_02012009_130001.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/pastedpic_02012009_143658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/pastedpic_02012009_143658.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/pastedpic_02012009_144750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/pastedpic_02012009_144750.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/pastedpic_07222009_135517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/pastedpic_07222009_135517.png -------------------------------------------------------------------------------- /docking-frames-common/guide2/pastedpic_07222009_140052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/guide2/pastedpic_07222009_140052.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/util/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Some simple utilty classes. 3 | */ 4 | package bibliothek.extension.gui.dock.util; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Actions.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Merger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Merger.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Themes.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/UIColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/UIColor.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The high level interfaces of the framework and the most often used classes. 3 | */ 4 | package bibliothek.gui; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/util/xml/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes to read, inspect, modify and write XML files. 3 | */ 4 | package bibliothek.util.xml; 5 | 6 | -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/help.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/help.data -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/image.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Combiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Combiner.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/DFCloseButton.html: -------------------------------------------------------------------------------- 1 | This example shows how we can use DockFrontend to build a close-button for Dockables. -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/DockTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/DockTitle.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/GroupAction.html: -------------------------------------------------------------------------------- 1 | 2 | GroupActions change their content depending on the properties of a Dockable. 3 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Internal.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/close.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/image.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/image.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Background.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/BorderModifier.html: -------------------------------------------------------------------------------- 1 | BorderModifiers allow clients to exchange all the Borders that are used by the framework. -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Displayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Displayers.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/GroupAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/GroupAction.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/HelloWorld.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/MultiFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/MultiFrame.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/NewCStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/NewCStation.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Placeholders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Placeholders.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/TheStations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/TheStations.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/Transparency.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/icons/copy.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/1.0/glasslib-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/repo/kux/glasslib/1.0/glasslib-1.0.jar -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/class.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/field.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/icon.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/redo.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/undo.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/add.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/BorderModifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/BorderModifier.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/CommonInternal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/CommonInternal.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/DFCloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/DFCloseButton.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/DockTitle.html: -------------------------------------------------------------------------------- 1 | 2 | All the titles can be replaced by the client with custom implementations at any time. 3 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/StackTabLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/StackTabLayout.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarHelloWorld.html: -------------------------------------------------------------------------------- 1 | This simple example shows how to set up a few toolbars using DockActions as buttons. -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/util/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Some classes which are used in DockingFrames, but do not have any 3 | * importance. 4 | */ 5 | package bibliothek.util; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/dockable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/dockable.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_auto.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_east.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_free.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_hold.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_north.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_south.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_west.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/content.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/method.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/minimize.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/package.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/clock.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/delete.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/pencil.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/notes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/notes.properties -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/color.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/delete.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/eraser.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/list.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/show.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/zoomin.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/screenshot.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/CommonHelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/CommonHelloWorld.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/CorePerspectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/CorePerspectives.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/GroupingDockables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/GroupingDockables.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/HideCloseAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/HideCloseAction.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/MultipleDockables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/MultipleDockables.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PersistentLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/PersistentLayout.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/SplitDockStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/SplitDockStation.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/maximize.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/minimize.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/check.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/here.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/tool.png -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements that can be used in any application using DockingFrames. 3 | */ 4 | package bibliothek.gui.dock.facile; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/title/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements needed to paint the title of a {@link bibliothek.gui.Dockable}. 3 | */ 4 | package bibliothek.gui.dock.title; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/util/filter/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Additional implementations of the {@link bibliothek.util.Filter} interface. 3 | */ 4 | package bibliothek.util.filter; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/dockStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/dockStation.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/small_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/small_delete.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/hierarchy.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/interface.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_red.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/page_add.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/palette.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/picture.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/zoomout.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/DFPersistentLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/DFPersistentLayout.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PerspectivesHistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/PerspectivesHistory.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/SelectPerspectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/SelectPerspectives.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/TitleWithTextField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/TitleWithTextField.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/normalize.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/pin_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/pin_active.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/frontend/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes and interfaces needed by the {@link bibliothek.gui.DockFrontend} 3 | */ 4 | package bibliothek.gui.dock.frontend; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/close2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/close2.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/closex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/closex.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/renamex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/renamex.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/replacex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/replacex.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/closex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/closex.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/holdoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/holdoff.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/holdon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/holdon.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/flap_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/flap_direction.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/small_default.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/split_maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/split_maximize.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/split_normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/split_normalize.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_bdt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_bdt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_bdt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_bdt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_blt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_blt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_blt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_blt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_kdt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_kdt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_kdt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_kdt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_klt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_klt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_klt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_klt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_ndt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_ndt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_ndt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_ndt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_nlt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_nlt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_nlt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_nlt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_pdt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_pdt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_pdt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_pdt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_plt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_plt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_plt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_plt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qdt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qdt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qdt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qdt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qlt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qlt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qlt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_qlt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rdt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rdt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rdt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rdt48.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rlt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rlt16.png -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rlt48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-chess/src/data/bibliothek/chess/icons/Chess_rlt48.png -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/constructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-help/src/data/bibliothek/help/icons/constructor.png -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/image.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bin.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bug.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/car.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/cd.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/cog.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_blue.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_green.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_orange.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_pink.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_purple.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/flag_yellow.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/page_copy.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/page_delete.png -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-paint/src/data/bibliothek/paint/icons/application.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/EclipseLikeCloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/EclipseLikeCloseButton.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PerspectivesMultiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/PerspectivesMultiple.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/SingleCDockableFactory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/SingleCDockableFactory.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/SplittingExternalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/SplittingExternalized.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/TheStations.html: -------------------------------------------------------------------------------- 1 | A "DockStation" is a parent for a "Dockable". This example features all four stations that the framework offers. -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/close_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/close_active.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/externalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/externalize.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/overflow_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/overflow_menu.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/unexternalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/unexternalize.png -------------------------------------------------------------------------------- /docking-frames-ext-glass/src/glass/eclipse/theme/images/unpin_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-glass/src/glass/eclipse/theme/images/unpin_active.png -------------------------------------------------------------------------------- /launch/mvn-deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # this will deploy build to the remote sonatype repo 4 | 5 | cd ../ 6 | 7 | mvn clean source:jar javadoc:jar deploy --define skipTests 8 | 9 | -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/rename.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/replace.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_free2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_free2.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_freex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_freex.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_hold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_hold2.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_holdx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/flap_holdx.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/maximize.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/normalize.png -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/xml.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bell.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/bomb.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/book.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/brick.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/cart.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/coins.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/email.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/film.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/heart.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/money.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/music.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/color_swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/color_swatch.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PerspectivesIntroduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/PerspectivesIntroduction.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/StackTabLayout.html: -------------------------------------------------------------------------------- 1 | This example shows how a TabLayoutManager can be used to influence the position of tabs on a StackDockStation. 2 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarExpanding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarExpanding.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarHelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarHelloWorld.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/preferences.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/maximize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/minimize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/normalize.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/stations/inkscape_pasted_image_20120716_161214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/stations/inkscape_pasted_image_20120716_161214.png -------------------------------------------------------------------------------- /docking-frames-core/guide2/stations/inkscape_pasted_image_20120718_110037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/guide2/stations/inkscape_pasted_image_20120718_110037.png -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/binary.png -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/icon.png -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/load.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/anchor.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/attach.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/basket.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/calendar.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/camera.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/comments.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/computer.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/plugin.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/script.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/folder_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/folder_explore.png -------------------------------------------------------------------------------- /docking-frames-demo-size-and-color/src/data/bibliothek/sizeAndColor/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-size-and-color/src/data/bibliothek/sizeAndColor/icon.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PerspectivesIntroduction.html: -------------------------------------------------------------------------------- 1 | 2 | Perspectives allow clients to set up the layout of an application without creating any Dockables. 3 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/shadowsAndLight_GregMartin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-tutorial/src/data/tutorial/shadowsAndLight_GregMartin.jpg -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCustomization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCustomization.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_vertical.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_vertical.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_vertical.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/close.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/free.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/free2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/free2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/hold.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/hold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/hold2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/externalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/externalize.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/action/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The components dealing with the logic of {@link bibliothek.gui.dock.action.DockAction}s. 3 | */ 4 | package bibliothek.gui.dock.action; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/flap/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements that are related to the {@link bibliothek.gui.dock.FlapDockStation}. 3 | */ 4 | package bibliothek.gui.dock.station.flap; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/nostack/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements needed by the {@link bibliothek.gui.dock.themes.NoStackTheme}. 3 | */ 4 | package bibliothek.gui.dock.themes.nostack; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Distribution of information in a global scale and methods available from 3 | * everywhere. 4 | */ 5 | package bibliothek.gui.dock.util; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_maximize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_maximize2.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_maximizex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_maximizex.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_cs.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_de.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_es.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_fr.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_it.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_ro.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_ro.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_sv.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_sv.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_tr.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_vi.properties -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/book_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/book_open.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/briefcase.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/calculator.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/chart_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/chart_bar.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/chart_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/chart_pie.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/controller.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/email_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/email_open.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/lightning.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/newspaper.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/telephone.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/television.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/television.png -------------------------------------------------------------------------------- /docking-frames-demo-size-and-color/src/data/bibliothek/sizeAndColor/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-size-and-color/src/data/bibliothek/sizeAndColor/snapshot.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PerspectivesMultiple.html: -------------------------------------------------------------------------------- 1 | 2 | Perspectives allow to place SingleCDockables and MultipleCDockables. Perspectives also support CWorkingAreas. 3 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/WizardSplitDockStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar-tutorial/src/data/tutorial/WizardSplitDockStation.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_horizontal.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_horizontal.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_horizontal.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_vertical.png -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/action/predefined/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A set of more complex actions that can be directly used. 3 | */ 4 | package bibliothek.gui.dock.common.action.predefined; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/action/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Some {@link bibliothek.gui.dock.action.DockAction}s used by Common. 3 | */ 4 | package bibliothek.gui.dock.facile.action; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/station/split/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Support classes for {@link bibliothek.gui.dock.SplitDockStation}. 3 | */ 4 | package bibliothek.gui.dock.facile.station.split; -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/close2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/close2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/maximize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/minimize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/unexternalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/unexternalize.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/screen/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements that are related to the {@link bibliothek.gui.dock.ScreenDockStation}. 3 | */ 4 | package bibliothek.gui.dock.station.screen; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/stack/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements which are related to the {@link bibliothek.gui.dock.StackDockStation}. 3 | */ 4 | package bibliothek.gui.dock.station.stack; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_normalize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_normalize2.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_normalizex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/split_normalizex.png -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_hu_HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_hu_HU.properties -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_pt_BR.properties -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/add_factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/add_factory.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/application_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/application_view_list.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/BasicsDockFrontend.html: -------------------------------------------------------------------------------- 1 | DockFrontend is a thin wrapper around DockController. It adds some features that are often needed to build a real application. -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Themes.html: -------------------------------------------------------------------------------- 1 | A collection of four themes. The framework is highly customizable, but you already get nice 2 | effects by just changing the DockThemes. -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCommonHelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCommonHelloWorld.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCommonPerspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCommonPerspective.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_horizontal.png -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/layout/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes to manage how space is distributed between {@link bibliothek.gui.Dockable}s. 3 | */ 4 | package bibliothek.gui.dock.common.layout; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/station/screen/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Support classes for {@link bibliothek.gui.dock.ScreenDockStation}. 3 | */ 4 | package bibliothek.gui.dock.facile.station.screen; -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/maximize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/maximize2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/minimize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/minimize2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/normalize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/normalize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/normalize2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/maximize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/minimize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/normalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/normalize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_cs.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_de.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_es.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_fr.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_ro.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_ro.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_sv.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_sv.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_tr.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_vi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_vi.properties -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/property/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various implementations of {@link bibliothek.gui.dock.util.property.PropertyFactory}. 3 | */ 4 | package bibliothek.gui.dock.util.property; -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/add_dockable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/add_dockable.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/emoticon_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/emoticon_smile.png -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/emoticon_tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-notes/src/data/bibliothek/notes/icons/choices/emoticon_tongue.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Displayers.html: -------------------------------------------------------------------------------- 1 | 2 | How to replace a DockableDisplayer with a custom implementation. 3 | This example uses an implementation that shows another border 4 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_hover_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_hover_vertical.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_hover_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_hover_vertical.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_hover_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_hover_vertical.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_hover_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_hover_vertical.png -------------------------------------------------------------------------------- /launch/mvn-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # this will install build in your local maven repo ${user.home}/.m2/repository/ 4 | 5 | cd ../ 6 | 7 | mvn clean source:jar javadoc:jar install --define skipTests 8 | 9 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/action/panel/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Supporting classes for {@link bibliothek.gui.dock.common.action.CPanelPopup}. 3 | */ 4 | package bibliothek.gui.dock.common.action.panel; -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/externalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/externalize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/externalize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/externalize2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/unexternalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/unexternalize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/externalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/externalize.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_hu_HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_hu_HU.properties -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_pt_BR.properties -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/eclipse/rex/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the elements needed to paint a generic "tabbed pane". 3 | */ 4 | package bibliothek.extension.gui.dock.theme.eclipse.rex; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/displayer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes and interfaces that are needed by the {@link bibliothek.gui.dock.station.DockableDisplayer}. 3 | */ 4 | package bibliothek.gui.dock.displayer; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements needed by various implementations of the 3 | * {@link bibliothek.gui.DockStation} interface. 4 | */ 5 | package bibliothek.gui.dock.station; -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/remove_dockable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/remove_dockable.png -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/remove_factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-demo-layouts/src/data/bibliothek/commonLayouts/icons/remove_factory.png -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/GuideCore.html: -------------------------------------------------------------------------------- 1 | These examples belong to the guide for Core 2 | 3 |
    4 |
  1. DockableDisplayer: how to replace DockableDisplayers
  2. 5 |
6 | 7 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PerspectivesHistory.html: -------------------------------------------------------------------------------- 1 | 2 | Any CDockable is associated with a history of locations. This history can also be set up and modifyed with 3 | perspectives. 4 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PuttingAside.html: -------------------------------------------------------------------------------- 1 | Some clients want to open a Dockable close to another Dockable that is already visible. The "aside" 2 | feature allows to do exactly that. 3 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_hover_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/expand_hover_horizontal.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_hover_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/larger_hover_horizontal.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_hover_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/shrink_hover_horizontal.png -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_hover_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/smaller_hover_horizontal.png -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/theme/eclipse/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Supporting classes for {@link bibliothek.gui.dock.common.theme.CEclipseTheme}. 3 | */ 4 | package bibliothek.gui.dock.common.theme.eclipse; -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/unexternalize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/unexternalize2.png -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/unexternalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Benoker/DockingFrames/HEAD/docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/unexternalize.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/basic/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Factories and classes used when the {@link bibliothek.gui.dock.themes.BasicTheme} 3 | * is active. 4 | */ 5 | package bibliothek.gui.dock.themes.basic; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/color/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The color subsystem, used by most of the components to search for the colors 3 | * they need to paint. 4 | */ 5 | package bibliothek.gui.dock.util.color; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/NewCStation.html: -------------------------------------------------------------------------------- 1 | 2 | If a client uses a custom DockStation for Core, then this custom station can be wrapped into a CStation and 3 | used in Common as well. 4 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains an implementation of {@link bibliothek.gui.DockTheme} and 3 | * all classes which are neede by this theme. 4 | */ 5 | package bibliothek.gui.dock.themes; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/lookandfeel/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Generic helper classes for the {@link bibliothek.gui.dock.support.lookandfeel.LookAndFeelList} 3 | */ 4 | package bibliothek.gui.dock.facile.lookandfeel; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/support/util/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Utility classes, used to load resources like icons or manage settings that need to be stored persistently. 3 | */ 4 | package bibliothek.gui.dock.support.util; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Combiner.html: -------------------------------------------------------------------------------- 1 | The Combiner is responsible for combining two Dockables. It allows to draw on the DockStation which 2 | performs the operation and it can be replaced by clients. -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/PersistentLayout.html: -------------------------------------------------------------------------------- 1 | Storing the layout persistently is one of the most important tasks. This example shows how to use 2 | PredefinedDockSituation to accomplish that task. -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/support/menu/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Basic interfaces for a small framework that builds and manages {@link javax.swing.JMenu}s with changing content. 3 | */ 4 | package bibliothek.gui.dock.support.menu; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/UIColor.html: -------------------------------------------------------------------------------- 1 | 2 | Clients can exchange any color used by the framework through the ColorManager. It is even possible to set up rules 3 | telling which module gets which color. 4 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/intern/ui/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Base-classes intended for inheritance and small strategy-classes modifying the way Core works. 3 | */ 4 | package bibliothek.gui.dock.common.intern.ui; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The five basic classes implementing {@link bibliothek.gui.Dockable} and 3 | * {@link bibliothek.gui.DockStation} plus some supporting elements. 4 | */ 5 | package bibliothek.gui.dock; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/station/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains extensions to the {@link bibliothek.gui.DockStation}s. These 3 | * extensions are usually disabled. 4 | */ 5 | package bibliothek.extension.gui.dock.station; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/dockable/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Some classes related to {@link bibliothek.gui.Dockable}. Most classes 3 | * in this package have no relationship to each other. 4 | */ 5 | package bibliothek.gui.dock.dockable; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/MultiFrame.html: -------------------------------------------------------------------------------- 1 | 2 | The framework supports using more than one JFrame at a time. This example allows you to try out how the framework reacts 3 | when the user closes and opens JFrames. 4 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/support/sets/RootSet.java: -------------------------------------------------------------------------------- 1 | package tutorial.support.sets; 2 | 3 | 4 | public class RootSet extends TutorialSet{ 5 | public RootSet(){ 6 | super( CommonSet.class, 7 | CoreSet.class ); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/ToolbarCommonPerspective.html: -------------------------------------------------------------------------------- 1 | 2 | The perspective API is available for Toolbars. It allows clients to build a layout without the need 3 | of actually creating any CToolbarItems. 4 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/border/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains classes required to modify the {@link javax.swing.border.Border} of 3 | * various {@link javax.swing.JComponent}s. 4 | */ 5 | package bibliothek.gui.dock.themes.border; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/DFPersistentLayout.html: -------------------------------------------------------------------------------- 1 | This example shows how DockFrontend allows to manage different layouts. The client can 2 | just call one of the conveniently prepared methods to store or change the layout. -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/smooth/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains elements to paint a {@link bibliothek.gui.dock.title.DockTitle} which smoothly changes 3 | * its color. 4 | */ 5 | package bibliothek.extension.gui.dock.theme.smooth; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/MultipleDockables.html: -------------------------------------------------------------------------------- 1 | 2 | MultipleCDockables can be used to create "editors". The number of editors is unlimited and the 3 | framework provides facilities to store the content of such editors. 4 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/WizardSplitDockStation.html: -------------------------------------------------------------------------------- 1 | The WizardSplitDockStation allows clients to show Dockables that do not automatically change their sizes. Instead 2 | the station allows some empty space to show up. -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/mode/station/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Wrappers for {@link bibliothek.gui.DockStation}s, implementing {@link bibliothek.gui.dock.facile.mode.StationModeArea}. 3 | */ 4 | package bibliothek.gui.dock.facile.mode.station; -------------------------------------------------------------------------------- /docking-frames-common/testing/bibliothek/test/InspectionNodeListener.java: -------------------------------------------------------------------------------- 1 | package bibliothek.test; 2 | 3 | public interface InspectionNodeListener { 4 | public void updated(); 5 | public void updated( InspectionNode[] oldChildren, InspectionNode[] newChildren ); 6 | } 7 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/action/dropdown/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements needed to design the communication between a 3 | * {@link bibliothek.gui.dock.action.DropDownAction} and its children. 4 | */ 5 | package bibliothek.gui.dock.action.dropdown; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/perspective/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The perspective API allows clients to access and modify the layout without 3 | * actually creating any {@link bibliothek.gui.Dockable}s. 4 | */ 5 | package bibliothek.gui.dock.perspective; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/split/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements which are needed by the {@link bibliothek.gui.dock.SplitDockStation}, 3 | * and which are needed to interact with the station. 4 | */ 5 | package bibliothek.gui.dock.station.split; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/support/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements used by various {@link bibliothek.gui.DockStation}s to store 3 | * properties and to propagate events to other objects. 4 | */ 5 | package bibliothek.gui.dock.station.support; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/font/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The font-subsystem is used to define the fonts that are used to paint 3 | * text. Most components of the framework make use of this system. 4 | */ 5 | package bibliothek.gui.dock.util.font; 6 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/action/util/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Some utility classes required to precisely configure the behavior of 3 | * {@link bibliothek.gui.dock.common.action.CAction}s. 4 | */ 5 | package bibliothek.gui.dock.common.action.util; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/preference/editor/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A set of {@link bibliothek.extension.gui.dock.preference.PreferenceEditor}s 3 | * for types that are often used. 4 | */ 5 | package bibliothek.extension.gui.dock.preference.editor; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/span/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The Span API defines the animations that are played when the user is about 3 | * to drop a {@link bibliothek.gui.Dockable} onto a new parent. 4 | */ 5 | package bibliothek.gui.dock.station.span; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/stack/menu/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains an abstract implementation of {@link bibliothek.gui.dock.station.stack.CombinedMenu} 3 | * including helper classes. 4 | */ 5 | package bibliothek.gui.dock.station.stack.menu; 6 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Background.html: -------------------------------------------------------------------------------- 1 | The framework uses a replaceable strategy for painting the background of most Components. This example 2 | shows how a client can use a custom strategy for creating transparency effects. 3 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/SingleCDockableFactory.html: -------------------------------------------------------------------------------- 1 | 2 | CControl supports lazy creation of SingleCDockables. Clients can register 3 | SingleCDockableFactories and CControl will invoke the factories once the Dockable is required. 4 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/menu/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Some {@link bibliothek.gui.dock.support.menu.MenuPiece}s to modify the layout and settings of an 3 | * application that uses Common. 4 | */ 5 | package bibliothek.gui.dock.common.menu; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Internal.html: -------------------------------------------------------------------------------- 1 | 2 | DockingFrames has limited support for JDesktopPane and JInternalFrames. Some factories and 3 | strategies have to be replaced in order to use JDesktopPane, this example shows how to do that. 4 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/preference/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A set of {@link bibliothek.extension.gui.dock.preference.PreferenceModel}s 3 | * that show properties of this framework. 4 | */ 5 | package bibliothek.extension.gui.dock.preference.model; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/bubble/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various graphical and logical components used when 3 | * {@link bibliothek.extension.gui.dock.theme.BubbleTheme} is 4 | * active. 5 | */ 6 | package bibliothek.extension.gui.dock.theme.bubble; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/CommonInternal.html: -------------------------------------------------------------------------------- 1 | 2 | DockingFrames has limited support for JDesktopPane and JInternalFrames. Some factories and 3 | strategies have to be replaced in order to use JDesktopPane, this example shows how to do that. 4 | -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_bs_BA.properties: -------------------------------------------------------------------------------- 1 | FrontendSettingsMenuPiece.save: Spremi 2 | FrontendSettingsMenuPiece.delete: Obri\u0161i 3 | rename.cancel: Prekid 4 | PreferenceMenuPiece.text: Postavke 5 | preference.shortcut.close.label: Zatvori 6 | -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_pl_PL.properties: -------------------------------------------------------------------------------- 1 | FrontendSettingsMenuPiece.save: Zapisz 2 | FrontendSettingsMenuPiece.delete: Usu\u0144 3 | rename.cancel: Anuluj 4 | PreferenceMenuPiece.text: Ustawienia 5 | preference.shortcut.close.label: Zamknij 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/font/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Implementations of {@link bibliothek.gui.dock.util.font.DockFont} to be used 3 | * at different places (as described in the documentation for each item). 4 | */ 5 | package bibliothek.gui.dock.themes.font; 6 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/HideCloseAction.html: -------------------------------------------------------------------------------- 1 | 2 | When using the EclipseTheme the close action usually just stays on the tab. But it is possible to configure the 3 | EclipseTheme in such a way, that the action disappears from unselected tabs. 4 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Transparency.html: -------------------------------------------------------------------------------- 1 | The framework uses a replaceable strategy for painting the background of most Components. This example 2 | shows how a client can use a custom strategy to configure components and make them transparent. 3 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/eclipse/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various graphical and logical components needed when the 3 | * {@link bibliothek.extension.gui.dock.theme.EclipseTheme} 4 | * is active. 5 | */ 6 | package bibliothek.extension.gui.dock.theme.eclipse; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/eclipse/stack/tab4/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes that give the {@link bibliothek.extension.gui.dock.theme.EclipseTheme} a look 3 | * identicall to Eclipse 4.x. 4 | */ 5 | package bibliothek.extension.gui.dock.theme.eclipse.stack.tab4; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/flat/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various graphical and logical components needed to paint the layout 3 | * when {@link bibliothek.extension.gui.dock.theme.FlatTheme} is active. 4 | */ 5 | package bibliothek.extension.gui.dock.theme.flat; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/focus/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains classes that allow the user to switch between {@link java.awt.Component}s or 3 | * from one {@link bibliothek.gui.Dockable} to another using only the keyboard. 4 | */ 5 | package bibliothek.gui.dock.focus; 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/action/popup/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the popup-menu that is usually shown when the user right clickes 3 | * on a {@link bibliothek.gui.Dockable} or a {@link bibliothek.gui.dock.title.DockTitle}. 4 | */ 5 | package bibliothek.gui.dock.action.popup; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/flap/layer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the various {@link bibliothek.gui.dock.station.layer.DockStationDropLayer}s that 3 | * are used by a {@link bibliothek.gui.dock.FlapDockStation}. 4 | */ 5 | package bibliothek.gui.dock.station.flap.layer; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/intern/font/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various implementations of {@link bibliothek.gui.dock.util.font.FontBridge} to transfer 3 | * fonts stored in a {@link bibliothek.gui.dock.common.FontMap}. 4 | */ 5 | package bibliothek.gui.dock.common.intern.font; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/menu/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Implementations of {@link bibliothek.gui.dock.support.menu.MenuPiece}. These classes are intended to be 3 | * used by clients directly without any need to subclass them. 4 | */ 5 | package bibliothek.gui.dock.facile.menu; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/preference/preferences/choice/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A set of small classes containing choices the user can make. Each choice 3 | * represents one preference to set. 4 | */ 5 | package bibliothek.extension.gui.dock.preference.preferences.choice; 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/screen/layer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the various {@link bibliothek.gui.dock.station.layer.DockStationDropLayer}s 3 | * that are used by a {@link bibliothek.gui.dock.ScreenDockStation}. 4 | */ 5 | package bibliothek.gui.dock.station.screen.layer; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/split/layer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the various {@link bibliothek.gui.dock.station.layer.DockStationDropLayer}s 3 | * that are used by the {@link bibliothek.gui.dock.SplitDockStation}. 4 | */ 5 | package bibliothek.gui.dock.station.split.layer; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/mode/station/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains wrapper classes for various {@link bibliothek.gui.DockStation}s, implementing the interface 3 | * {@link bibliothek.gui.dock.common.mode.CLocationMode}. 4 | */ 5 | package bibliothek.gui.dock.common.mode.station; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/icon/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes used by the {@link bibliothek.gui.dock.util.IconManager} to set up the 3 | * default icons and allowing clients to configure the {@link bibliothek.gui.dock.util.IconManager}. 4 | */ 5 | package bibliothek.gui.dock.util.icon; -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/tutorial/toolbar/ToolbarTutorialMain.java: -------------------------------------------------------------------------------- 1 | package tutorial.toolbar; 2 | 3 | import tutorial.TutorialMain; 4 | 5 | public class ToolbarTutorialMain { 6 | public static void main( String[] args ) throws Exception { 7 | TutorialMain.main( args ); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/mode/action/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A set of {@link bibliothek.gui.dock.action.DockAction}s that change the {@link bibliothek.gui.dock.facile.mode.LocationMode} 3 | * of a {@link bibliothek.gui.Dockable}. 4 | */ 5 | package bibliothek.gui.dock.facile.mode.action; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/eclipse/icons.ini: -------------------------------------------------------------------------------- 1 | close = closex.png 2 | 3 | split.maximize = maximize.png 4 | split.normalize = normalize.png 5 | 6 | screen.maximize = maximize.png 7 | screen.normalize = normalize.png 8 | 9 | flap.hold = holdon.png 10 | flap.free = holdoff.png 11 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/preference/preferences/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Implementations of various {@link bibliothek.extension.gui.dock.preference.Preference}s which 3 | * are used in the default set of preferences. 4 | */ 5 | package bibliothek.extension.gui.dock.preference.preferences; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains some {@link bibliothek.gui.DockTheme}s. DockThemes can be exchanged 3 | * using {@link bibliothek.gui.DockController#setTheme(bibliothek.gui.DockTheme)}. 4 | */ 5 | package bibliothek.extension.gui.dock.theme; 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/laf/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A set of classes dealing with {@link javax.swing.LookAndFeel}s and telling which 3 | * colors of a {@link javax.swing.LookAndFeel} should be used to paint elements of 4 | * the framework. 5 | */ 6 | package bibliothek.gui.dock.util.laf; 7 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/eclipse/displayer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The {@link bibliothek.gui.dock.station.DockableDisplayer}s that are used 3 | * by the {@link bibliothek.extension.gui.dock.theme.EclipseTheme}. 4 | */ 5 | package bibliothek.extension.gui.dock.theme.eclipse.displayer; 6 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/event/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various listeners and adapters that can be added to {@link bibliothek.gui.dock.common.CControl}, 3 | * {@link bibliothek.gui.dock.common.intern.CDockable} and other classes associated with them. 4 | */ 5 | package bibliothek.gui.dock.common.event; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/eclipse/stack/tab/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various components needed to paint and manage the tab which is visible 3 | * on a {@link bibliothek.extension.gui.dock.theme.eclipse.stack.EclipseTabPane}. 4 | */ 5 | package bibliothek.extension.gui.dock.theme.eclipse.stack.tab; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/layer/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The {@link bibliothek.gui.dock.station.layer.DockStationDropLayer} is used by the 3 | * {@link bibliothek.gui.dock.control.DockRelocator} to find the target of a 4 | * drag and drop operation. 5 | */ 6 | package bibliothek.gui.dock.station.layer; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/util/container/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Some classes with generic fields. They are mostly used when a method 3 | * needs to return more than just one object, or to store temporarily 4 | * more than one object (for example in a {@link java.util.Map}. 5 | */ 6 | package bibliothek.util.container; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/CorePerspectives.html: -------------------------------------------------------------------------------- 1 | 2 | With perspectives clients can set up a layout without actually knowing the Dockable objects.
3 | Perspectives are primarily intended to be used by the Common project, but clients can make use of the 4 | basic API in Core as well. 5 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/perspective/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The perspective API offers clients the possibility to define or modify the layout 3 | * of an application without actually creating any {@link bibliothek.gui.dock.common.intern.CDockable}s. 4 | */ 5 | package bibliothek.gui.dock.common.perspective; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/layout/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements dealing with the location of {@link bibliothek.gui.Dockable}s 3 | * on their {@link bibliothek.gui.DockStation} and allowing to store the 4 | * whole layout of a set of Dockables and stations. 5 | */ 6 | package bibliothek.gui.dock.layout; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/text/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes used by the {@link bibliothek.gui.dock.util.TextManager} to set up 3 | * the default texts based on the language in which the JRE is executed, and 4 | * classes allowing clients to modify these texts. 5 | */ 6 | package bibliothek.gui.dock.util.text; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/util/workarounds/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains code that is executed depending on the version of the JRE. The codes 3 | * enable features that are only available on newer version, or work around 4 | * incompatibilities between old and new versions. 5 | */ 6 | package bibliothek.util.workarounds; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/theme/eclipse/stack/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * An implementation of {@link bibliothek.gui.dock.station.stack.tab.TabPane} and 3 | * supporting classes for the {@link bibliothek.extension.gui.dock.theme.EclipseTheme}. 4 | */ 5 | package bibliothek.extension.gui.dock.theme.eclipse.stack; 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/basic/action/buttons/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes which allow to paint and interact with a 3 | * {@link bibliothek.gui.dock.themes.basic.action.BasicButtonModel}. The model 4 | * is visualized using a little button. 5 | */ 6 | package bibliothek.gui.dock.themes.basic.action.buttons; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Merger.html: -------------------------------------------------------------------------------- 1 | 2 | The drag'n'drop mechanism also allows to merge DockStations. In this example the client defines a rule in which 3 | dropping a StackDockStation over a Dockable on a SplitDockStations results in a merged StackDockStation rather than 4 | a new station. 5 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/perspective/mode/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * This module of the perspective API allows clients to access and modify 3 | * {@link bibliothek.gui.dock.common.intern.CDockable}s that are in different modes like "maximized" or "minimized". 4 | */ 5 | package bibliothek.gui.dock.common.perspective.mode; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/intern/station/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the {@link bibliothek.gui.dock.common.intern.station.CommonDockStation}, various implementations of {@link bibliothek.gui.dock.common.intern.station.CommonDockStation} and supporting classes. 3 | */ 4 | package bibliothek.gui.dock.common.intern.station; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/support/lookandfeel/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Offers a list containing factories for various {@link javax.swing.LookAndFeel}s. The list can exchange 3 | * the current {@link javax.swing.LookAndFeel} and update a set of {@link javax.swing.JComponent}. 4 | */ 5 | package bibliothek.gui.dock.support.lookandfeel; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/mode/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains an implementation of {@link bibliothek.gui.dock.support.mode.ModeManager} that links a mode to the location 3 | * of a {@link bibliothek.gui.Dockable}. Contains various interfaces and classes to handle different modes. 4 | */ 5 | package bibliothek.gui.dock.facile.mode; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/icon/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Special {@link javax.swing.Icon}s and supporting classes that cannot be saved 3 | * as an image because they have attributes that depend on the application, e.g. 4 | * the colors may depend on the {@link javax.swing.LookAndFeel}. 5 | */ 6 | package bibliothek.gui.dock.themes.icon; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/intern/action/panel/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Supporting classes for {@link bibliothek.gui.dock.common.action.CPanelPopup}. These classes are factories and 3 | * helper classes needed to create the {@link java.awt.Component} which shows the action. 4 | */ 5 | package bibliothek.gui.dock.common.intern.action.panel; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/support/mode/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Basic interfaces and classes for a framework that assigns modes to {@link bibliothek.gui.Dockable}s. It is not 3 | * specified what a mode exactly is, just that a {@link bibliothek.gui.Dockable} can have only one mode at a time. 4 | */ 5 | package bibliothek.gui.dock.support.mode; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_ko.properties: -------------------------------------------------------------------------------- 1 | close: \ub2eb\uae30 2 | flap.direction.north: \uc704\ub85c 3 | rename.cancel: \ucde8\uc18c 4 | split.maximize: \ucd5c\ub300\ud654 5 | screen.maximize: \ucd5c\ub300\ud654 6 | preference.dialog.cancel.text: \ucde8\uc18c 7 | preference.dialog.reset.text: \uc7ac\uc124\uc815 8 | -------------------------------------------------------------------------------- /docking-frames-common/guide2/guide2.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@input{introduction/chapter.aux} 3 | \@input{notation/chapter.aux} 4 | \@input{basics/chapter.aux} 5 | \@input{foundation/chapter.aux} 6 | \@input{locations/chapter.aux} 7 | \@input{actions/chapter.aux} 8 | \@input{effects/chapter.aux} 9 | \@input{suggestions/chapter.aux} 10 | \@input{properties/chapter.aux} 11 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/intern/layout/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Implementation of a {@link bibliothek.gui.dock.frontend.LayoutChangeStrategy} and supporting classes. The 3 | * strategy in this package pays special attention to {@link bibliothek.gui.dock.common.MultipleCDockable}s. 4 | */ 5 | package bibliothek.gui.dock.common.intern.layout; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_pl_PL.properties: -------------------------------------------------------------------------------- 1 | close: Zamknij 2 | rename.cancel: Anuluj 3 | theme.basic: Domy\u015blny 4 | preference.buttonContent.text: Tekst 5 | preference.dialog.title: Ustawienia 6 | preference.dialog.cancel.text: Anuluj 7 | preference.dialog.apply.text: Zastosuj 8 | preference.dialog.reset.text: Reset 9 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/action/core/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A set of {@link bibliothek.gui.dock.action.DockAction}s that also implement 3 | * {@link bibliothek.gui.dock.common.action.core.CommonDockAction}. These actions are used to feed the {@link bibliothek.gui.dock.common.action.CAction}s. 4 | */ 5 | package bibliothek.gui.dock.common.action.core; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/preference/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes used directly or indirectly by the {@link bibliothek.gui.dock.common.CPreferenceModel}. These classes 3 | * can also be used by clients to create their custom {@link bibliothek.extension.gui.dock.preference.PreferenceModel}. 4 | */ 5 | package bibliothek.gui.dock.common.preference; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/control/focus/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The focus sub-system is responsible for transferring the focus to the currently 3 | * active {@link bibliothek.gui.Dockable}. The system usually reacts to user events 4 | * like clicking the mouse, or closing a {@link bibliothek.gui.Dockable}. 5 | */ 6 | package bibliothek.gui.dock.control.focus; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/swing/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Subclasses of swing-{@link javax.swing.JComponent}s using the {@link bibliothek.gui.dock.util.swing.FontUpdater} to 3 | * modify their current font. Implemented such that a change of the {@link javax.swing.LookAndFeel} 4 | * is still possible. 5 | */ 6 | package bibliothek.gui.dock.util.swing; 7 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/disable/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the {@link bibliothek.gui.dock.disable.DisablingStrategy} and associated classes, 3 | * allows clients to disable {@link bibliothek.gui.Dockable}s, {@link bibliothek.gui.dock.title.DockTitle}s 4 | * or {@link bibliothek.gui.dock.action.DockAction}s. 5 | */ 6 | package bibliothek.gui.dock.disable; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/flap/button/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the {@link bibliothek.gui.dock.station.flap.button.ButtonContentFilter}, which 3 | * allows clients to decide which {@link bibliothek.gui.dock.action.DockAction}s to show 4 | * on a {@link bibliothek.gui.dock.FlapDockStation}. 5 | */ 6 | package bibliothek.gui.dock.station.flap.button; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/intern/action/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * {@link bibliothek.gui.dock.common.action.CAction}s and supporting classes that are not intended for clients 3 | * to be used directly. Clients should prefer using the classes from the package bibliothek.gui.dock.common.action. 4 | */ 5 | package bibliothek.gui.dock.common.intern.action; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/location/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various implementations of {@link bibliothek.gui.dock.common.CLocation}. Clients can use these classes 3 | * either directly or go through the factory-methods provided by {@link bibliothek.gui.dock.common.CLocation} to create 4 | * new locations. 5 | */ 6 | package bibliothek.gui.dock.common.location; -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/eclipse/icons.ini: -------------------------------------------------------------------------------- 1 | locationmanager.normalize = normalize.png 2 | locationmanager.maximize = maximize.png 3 | locationmanager.minimize = minimize.png 4 | locationmanager.externalize = externalize.png 5 | locationmanager.unexternalize = unexternalize.png 6 | locationmanager.unmaximize_externalized = normalize.png 7 | 8 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/basic/action/menu/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Handlers taking various kinds of 3 | * {@link bibliothek.gui.dock.action.DockAction} and presenting them 4 | * as {@link bibliothek.gui.dock.themes.basic.action.menu.MenuViewItem} in 5 | * order to display the actions in a menu. 6 | */ 7 | package bibliothek.gui.dock.themes.basic.action.menu; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/stack/tab/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * This package contains a generic implementation of a "tabbed-pane". Such a tabbed-pane is 3 | * a list of components of which only one is visible. The user can selected the visible 4 | * component by clicking onto some tabs or opening some menu. 5 | */ 6 | package bibliothek.gui.dock.station.stack.tab; 7 | -------------------------------------------------------------------------------- /docking-frames-demo-paint/src/data/bibliothek/paint/icons/icons.ini: -------------------------------------------------------------------------------- 1 | zoom.in = zoomin.png 2 | zoom.out = zoomout.png 3 | 4 | picture.add = add.png 5 | picture.remove = delete.png 6 | picture.show = show.png 7 | 8 | shape.remove = eraser.png 9 | 10 | dockable.picture = picture.png 11 | dockable.color = color.png 12 | dockable.list = list.png 13 | 14 | application = application.png 15 | -------------------------------------------------------------------------------- /docking-frames-demo-help/src/data/bibliothek/help/icons/icons.ini: -------------------------------------------------------------------------------- 1 | class = class.png 2 | interface = interface.png 3 | package = package.png 4 | 5 | undo = undo.png 6 | redo = redo.png 7 | 8 | constructor = constructor.png 9 | field = field.png 10 | method = method.png 11 | hierarchy = hierarchy.png 12 | content = content.png 13 | 14 | minimize = minimize.png 15 | 16 | application = icon.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/accept/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains classes to deal with {@link bibliothek.gui.dock.accept.DockAcceptance}s. 3 | * The classes in this package can be used to create new DockAcceptances 4 | * by subclassing them, or to combine several DockAcceptances using 5 | * some logical rules. 6 | */ 7 | package bibliothek.gui.dock.accept; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/screen/magnet/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The magnet API allows {@link bibliothek.gui.dock.station.screen.ScreenDockWindow}s to 3 | * attract each other, or to stick together. The most important interface for clients 4 | * is {@link bibliothek.gui.dock.station.screen.magnet.AttractorStrategy}. 5 | */ 6 | package bibliothek.gui.dock.station.screen.magnet; -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/bubble/icons.ini: -------------------------------------------------------------------------------- 1 | rename = renamex.png 2 | replace = replacex.png 3 | 4 | flap.hold = flap_hold2.png 5 | flap.free = flap_free2.png 6 | 7 | split.maximize = split_maximize2.png 8 | split.normalize = split_normalize2.png 9 | 10 | screen.maximize = split_maximize2.png 11 | screen.normalize = split_normalize2.png 12 | 13 | close = close2.png 14 | -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/maven-metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | kux 4 | glasslib 5 | 6 | 1.0 7 | 8 | 1.0 9 | 10 | 20180119173310 11 | 12 | 13 | -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_ko.properties: -------------------------------------------------------------------------------- 1 | minimize.in: \ucd5c\uc18c\ud654 2 | maximize.in: \ucd5c\ub300\ud654 3 | FrontendSettingsMenuPiece.save: \uc800\uc7a5 4 | rename.cancel: \ucde8\uc18c 5 | preference.shortcut.maximize.label: \ucd5c\ub300\ud654 6 | preference.shortcut.minimize.label: \ucd5c\uc18c\ud654 7 | preference.shortcut.close.label: \ub2eb\uae30 8 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/control/relocator/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various implementations of {@link bibliothek.gui.dock.control.relocator.RelocateOperation}. These 3 | * operations are executed by the {@link bibliothek.gui.dock.control.relocator.DefaultDockRelocator} once the user 4 | * finishes a drag and drop operation. 5 | */ 6 | package bibliothek.gui.dock.control.relocator; 7 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/screen/window/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the window ( {@link javax.swing.JDialog}, {@link bibliothek.gui.dock.station.flap.JInternalDialog}, etc..) 3 | * that shows the children of a {@link bibliothek.gui.dock.ScreenDockStation} and the classes required 4 | * to configure that window. 5 | */ 6 | package bibliothek.gui.dock.station.screen.window; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/action/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains different {@link bibliothek.gui.dock.action.DockAction}s and subclasses of {@link bibliothek.gui.dock.common.action.CAction} to 3 | * create buttons, checkboxes, menus and other components as button in the titles and tabs of 4 | * {@link bibliothek.gui.dock.common.intern.CDockable}s. 5 | */ 6 | package bibliothek.gui.dock.common.action; -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/icons.ini: -------------------------------------------------------------------------------- 1 | locationmanager.normalize = normalize.png 2 | locationmanager.maximize = maximize.png 3 | locationmanager.minimize = minimize.png 4 | locationmanager.externalize = externalize.png 5 | locationmanager.unexternalize = unexternalize.png 6 | locationmanager.unmaximize_externalized = normalize.png 7 | 8 | rename = rename.png 9 | replace = replace.png 10 | -------------------------------------------------------------------------------- /docking-frames-core/guide2/guide2.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@input{introduction/chapter.aux} 3 | \@input{basics/chapter.aux} 4 | \@input{layouts/chapter.aux} 5 | \@input{actions/chapter.aux} 6 | \@input{titles/chapter.aux} 7 | \@input{themes/chapter.aux} 8 | \@input{stations/chapter.aux} 9 | \@input{dragNdrop/chapter.aux} 10 | \@input{preferences/chapter.aux} 11 | \@input{extensions/chapter.aux} 12 | \@input{properties/chapter.aux} 13 | -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_bs_BA.properties: -------------------------------------------------------------------------------- 1 | close: Zatvori 2 | rename.cancel: Prekid 3 | theme.basic: Zadano [DICOM] 4 | preference.layout: Raspored 5 | preference.buttonContent.text: Tekst 6 | preference.dialog.title: Postavke 7 | preference.dialog.cancel.text: Prekid 8 | preference.dialog.apply.text: Primjeni 9 | preference.dialog.reset.text: Ponovi postavke 10 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/support/Tutorial.java: -------------------------------------------------------------------------------- 1 | package tutorial.support; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.TYPE) 10 | public @interface Tutorial { 11 | String title(); 12 | String id(); 13 | } 14 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/station/stack/tab/layouting/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various interfaces and classes used by a {@link bibliothek.gui.dock.station.stack.tab.TabPane} to 3 | * describe its content to a {@link bibliothek.gui.dock.station.stack.tab.TabLayoutManager}, which 4 | * will set position and size of all the children of the TabPane. 5 | */ 6 | package bibliothek.gui.dock.station.stack.tab.layouting; 7 | -------------------------------------------------------------------------------- /docking-frames-demo-app/src/bibliothek/demonstration/Main.java: -------------------------------------------------------------------------------- 1 | package bibliothek.demonstration; 2 | 3 | /** 4 | * This class is used only to startup the application. 5 | * @author Benjamin Sigg 6 | */ 7 | public class Main { 8 | /** 9 | * Starts the application 10 | * @param args are ignored 11 | */ 12 | public static void main( String[] args ){ 13 | Core core = new Core(); 14 | core.startup(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/facile/mode/status/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Strategies helping a {@link bibliothek.gui.dock.facile.mode.LocationModeManager} to decide which modes are 3 | * available for a {@link bibliothek.gui.Dockable}. Clients can use the property 4 | * {@link bibliothek.gui.dock.facile.mode.LocationModeManager#MODE_ENABLEMENT} to replace the current strategy. 5 | */ 6 | package bibliothek.gui.dock.facile.mode.status; -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/bibliothek/layouts/testing/SingleTestFactory.java: -------------------------------------------------------------------------------- 1 | package bibliothek.layouts.testing; 2 | 3 | import bibliothek.gui.dock.common.SingleCDockable; 4 | import bibliothek.gui.dock.common.SingleCDockableFactory; 5 | 6 | public class SingleTestFactory implements SingleCDockableFactory{ 7 | public SingleCDockable createBackup( String id ) { 8 | return new SingleTestDockable( id, true ); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_bg_BG.properties: -------------------------------------------------------------------------------- 1 | FrontendSettingsMenuPiece.save: \u0417\u0430\u0442\u0432\u043e\u0440\u0438 2 | FrontendSettingsMenuPiece.delete: \u0418\u0437\u0442\u0440\u0438\u0438 3 | rename.cancel: \u041e\u0442\u043c\u0435\u043d\u0438 4 | PreferenceMenuPiece.text: \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 5 | preference.shortcut.close.label: \u0417\u0430\u0442\u0432\u043e\u0440\u0438 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/basic/action/dropdown/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Handlers taking various kinds of 3 | * {@link bibliothek.gui.dock.action.DockAction} and presenting them 4 | * as {@link bibliothek.gui.dock.themes.basic.action.dropdown.DropDownViewItem} 5 | * in order to display them as children of a 6 | * {@link bibliothek.gui.dock.action.DropDownAction} 7 | */ 8 | package bibliothek.gui.dock.themes.basic.action.dropdown; -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/group/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains the {@link bibliothek.gui.dock.common.group.CGroupBehavior} and its implementations, 3 | * this interface allows to group {@link bibliothek.gui.Dockable}s together. If the user changes 4 | * the location of one {@link bibliothek.gui.Dockable} of the group, then other {@link bibliothek.gui.Dockable}s 5 | * may follow. 6 | */ 7 | package bibliothek.gui.dock.common.group; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/themes/color/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The color subsystem allows each kind of element to get its colors 3 | * from a central repository. The subsystem mostly is just a map of 4 | * {@link java.lang.String} - {@link java.awt.Color} pairs. Clients can change colors in the 5 | * subsystem and even create rules that influences the color of 6 | * individual elements. 7 | */ 8 | package bibliothek.gui.dock.themes.color; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/EclipseLikeCloseButton.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | If the look of the close button in the EclipseTheme is not satisfying, clients can customize the look and behavior a bit 4 | more. This example shows how to: 5 | 10 | 11 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/support/sets/CommonSet.java: -------------------------------------------------------------------------------- 1 | package tutorial.support.sets; 2 | 3 | import tutorial.common.guide.GuideCommonSet; 4 | 5 | import tutorial.common.basics.BasicCommonSet; 6 | import tutorial.support.Tutorial; 7 | 8 | @Tutorial(title="Common API", id="CommonAPI") 9 | public class CommonSet extends TutorialSet{ 10 | public CommonSet(){ 11 | super( BasicCommonSet.class, 12 | GuideCommonSet.class); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar/src/data/bibliothek/gui/toolbar/locale/toolbar.properties: -------------------------------------------------------------------------------- 1 | toolbar.item.larger: Expand 2 | toolbar.item.larger.tooltip: Make this panel bigger 3 | toolbar.item.expand: Expand 4 | toolbar.item.expand.tooltip: Make this panel as big as possible 5 | toolbar.item.smaller: Shrink 6 | toolbar.item.smaller.tooltip: Make this panel smaller 7 | toolbar.item.shrink: Shrink 8 | toolbar.item.shrink.tooltip: Make this panel as small as possible -------------------------------------------------------------------------------- /docking-frames-common/guide/Guide.ilg: -------------------------------------------------------------------------------- 1 | This is C:\tprogram_files\exmf\MiKTeX\bin\makeindex.exe, version 2.14 [02-Oct-2002] (with Thai support). 2 | Scanning input file C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]Common\guide\Guide.idx...done (0 entries accepted, 0 rejected). 3 | Nothing written in C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]Common\guide\Guide.ind. 4 | Transcript written in C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]Common\guide\Guide.ilg. 5 | -------------------------------------------------------------------------------- /docking-frames-ext-glass/repo/kux/glasslib/1.0/glasslib-1.0.pom: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | kux 6 | glasslib 7 | 1.0 8 | 9 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/tutorial/toolbar/common/CommonToolbarTutorials.java: -------------------------------------------------------------------------------- 1 | package tutorial.toolbar.common; 2 | 3 | import tutorial.support.Tutorial; 4 | import tutorial.support.sets.TutorialSet; 5 | 6 | @Tutorial(title = "Toolbar", id = "CommonToolbar") 7 | public class CommonToolbarTutorials extends TutorialSet { 8 | public CommonToolbarTutorials(){ 9 | super( CommonHelloWorld.class, 10 | CommonPerspective.class ); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/theme/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes related to the {@link bibliothek.gui.DockTheme}s. Provides a wrapper for each {@link bibliothek.gui.DockTheme} 3 | * that is delivered with Core. The wrappers make sure that colors, fonts and new buttons of Common 4 | * are handled. Also contains a list of all themes that are known to this framework. 5 | */ 6 | package bibliothek.gui.dock.common.theme; -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Extensions to the Core framework, including the {@link bibliothek.extension.gui.dock.theme.BubbleTheme}, 3 | * {@link bibliothek.extension.gui.dock.theme.EclipseTheme} and the preference mechanism. 4 | * These extensions are not necessary to run an application, but they are conveniently stored directly within 5 | * the library. 6 | */ 7 | package bibliothek.extension.gui.dock; -------------------------------------------------------------------------------- /docking-frames-demo-layouts/src/bibliothek/layouts/Application.java: -------------------------------------------------------------------------------- 1 | package bibliothek.layouts; 2 | 3 | public class Application { 4 | public static void main( String[] args ) { 5 | Core core = new Core(); 6 | core.show( null ); 7 | 8 | // CControl environment = core.getEnvironment().getEnvironmentControl(); 9 | // environment.setTheme( ThemeMap.KEY_ECLIPSE_THEME ); 10 | // Inspection.open( environment ); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/icons/bubble/icons.ini: -------------------------------------------------------------------------------- 1 | locationmanager.normalize = normalize2.png 2 | locationmanager.maximize = maximize2.png 3 | locationmanager.minimize = minimize2.png 4 | locationmanager.externalize = externalize2.png 5 | locationmanager.unexternalize = unexternalize2.png 6 | locationmanager.unmaximize_externalized = normalize2.png 7 | 8 | close = close2.png 9 | 10 | flap.hold = hold2.png 11 | flap.free = free2.png 12 | -------------------------------------------------------------------------------- /docking-frames-demo-help/src/bibliothek/help/control/URListener.java: -------------------------------------------------------------------------------- 1 | package bibliothek.help.control; 2 | 3 | /** 4 | * A listener to the {@link URManager}. 5 | * @author Benjamin Sigg 6 | * 7 | */ 8 | public interface URListener { 9 | /** 10 | * Called whenever the number of undo/redo-steps, or the selected 11 | * undo/redo-step changes. 12 | * @param manager the source of the event 13 | */ 14 | public void changed( URManager manager ); 15 | } 16 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/SplittingExternalized.html: -------------------------------------------------------------------------------- 1 | 2 | Usually externalized CDockables can be stacked, but there is no way to split them on the same window. 3 | 4 | With help of a ExternalizingCGridAreaConfiguration we can change this behavior. 5 | 6 | Note: Many people asked for such a feature, but it does make the user interface hard to use. It is not 7 | recommended to use this feature except for hard-core power users. 8 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/GuideCommon.html: -------------------------------------------------------------------------------- 1 | These examples are related to the guide for Common. 2 | 3 |
    4 |
  1. Perspectives (Introduction): Perspectives allow to set up the layout of an Application.
  2. 5 |
  3. Perspectives (Multiple Dockables): Perspectives also support MultipleCDockables and CWorkingAreas.
  4. 6 |
  5. Perspectives (History): How to user perspectives to modify the history of locations of a CDockable.
  6. 7 |
8 | 9 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/CommonToolbar.html: -------------------------------------------------------------------------------- 1 | The Toolbar extension adds toolbars to the framework. Toolbars work like any other CDockable, the extensions 2 | does however change the configuration of the framework such that the toolbars cannot be mixed with normal CDockables.
3 | To use the extension, clients only have to include the JAR files of the extension in their classpath. The framework will 4 | automatically load the new classes. 5 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/data/tutorial/CoreToolbar.html: -------------------------------------------------------------------------------- 1 | The Toolbar extension adds toolbars to the framework. Toolbars work like any other Dockable, the extensions 2 | does however change the configuration of the framework such that the toolbars cannot be mixed with normal Dockables.
3 | To use the extension, clients only have to include the JAR files of the extension in their classpath. The framework will 4 | automatically load the new classes. 5 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/SplitDockStation.html: -------------------------------------------------------------------------------- 1 | This example shows three ways to set up the layout on a SplitDockStation. 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /docking-frames-common/src/data/bibliothek/gui/dock/common/locale/common_zh_CN.properties: -------------------------------------------------------------------------------- 1 | minimize.in: \u6700\u5c0f\u5316 2 | maximize.in: \u6700\u5927\u5316 3 | FrontendSettingsMenuPiece.save: \u4fdd\u5b58 4 | FrontendSettingsMenuPiece.delete: \u5220\u9664 5 | rename.cancel: \u53d6\u6d88 6 | PreferenceMenuPiece.text: \u8bbe\u7f6e 7 | preference.shortcut.maximize.label: \u6700\u5927\u5316 8 | preference.shortcut.minimize.label: \u6700\u5c0f\u5316 9 | preference.shortcut.close.label: \u5173\u95ed 10 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/action/view/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes to create a views for {@link bibliothek.gui.dock.action.DockAction}s.
3 | * This package does not contain any views, only the mechanism to create some. 4 | * {@link bibliothek.gui.DockTheme}s will install 5 | * {@link bibliothek.gui.dock.action.view.ViewGenerator}s 6 | * to the {@link bibliothek.gui.dock.action.view.ActionViewConverter} to create the actual views. 7 | */ 8 | package bibliothek.gui.dock.action.view; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/dockFrontend/basics/BasicDockFrontendSet.java: -------------------------------------------------------------------------------- 1 | package tutorial.dockFrontend.basics; 2 | 3 | import tutorial.support.Tutorial; 4 | import tutorial.support.sets.TutorialSet; 5 | 6 | @Tutorial(title="DockFrontend", id="BasicsDockFrontend") 7 | public class BasicDockFrontendSet extends TutorialSet{ 8 | public BasicDockFrontendSet(){ 9 | super( DockFrontendExample.class, 10 | PersistentLayoutExample.class, 11 | AsideExample.class ); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/mode/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A subclass of {@link bibliothek.gui.dock.facile.mode.LocationModeManager} that handles {@link bibliothek.gui.dock.common.CLocation}s, 3 | * {@link bibliothek.gui.dock.common.mode.ExtendedMode}s and is aware of {@link bibliothek.gui.dock.common.CControl}. Contains also various 4 | * subclasses of classes that are related with {@link bibliothek.gui.dock.facile.mode.LocationModeManager}. 5 | */ 6 | package bibliothek.gui.dock.common.mode; -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/bibliothek/notes/Application.java: -------------------------------------------------------------------------------- 1 | package bibliothek.notes; 2 | 3 | 4 | /** 5 | * The startup-class if this application should be treated 6 | * as a stand-alone, non-restricted application. 7 | * @author Benjamin Sigg 8 | * 9 | */ 10 | public class Application { 11 | /** 12 | * Entrypoint 13 | * @param args ignored 14 | */ 15 | public static void main( String[] args ){ 16 | Core core = new Core( false, null ); 17 | core.startup(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /docking-frames-demo-chess/src/bibliothek/chess/model/Player.java: -------------------------------------------------------------------------------- 1 | package bibliothek.chess.model; 2 | 3 | /** 4 | * This enumeration marks the two players that play the game. 5 | * @author Benjamin Sigg 6 | * 7 | */ 8 | public enum Player { 9 | WHITE, BLACK; 10 | 11 | /** 12 | * Gets the opponent player of this. 13 | * @return the opponent 14 | */ 15 | public Player opponent(){ 16 | if( this == WHITE ) 17 | return BLACK; 18 | else 19 | return WHITE; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/OpeningEditors.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | A common task is to open yet another CDockable. When opening a CDockable we want that dockable to show up close to the 4 | currently focused dockable. CDockable offers several methods to do that, all have a name like "CDockable.setLocationsAside...". 5 |

6 | If opening CDockables on a CWorkingArea we can also make use of the "show" method, which not only sets the location, 7 | but also registers the Dockable at the CControl. -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Placeholders.html: -------------------------------------------------------------------------------- 1 | 2 | Shows how a PlaceholderStrategy can be used to keep the layout more persistent. If a Dockable is closed and later 3 | made visible again, then it keeps its location. 4 |
5 | One of the more interesting features: stack two Dockables. Close one of them and move the other around. If you now 6 | open the closed Dockable again, then the stack will reapear. Without placeholders the closed Dockable would appear 7 | at its former position. 8 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/support/sets/CoreSet.java: -------------------------------------------------------------------------------- 1 | package tutorial.support.sets; 2 | 3 | import tutorial.core.basics.BasicCoreSet; 4 | import tutorial.core.guide.GuideCoreSet; 5 | import tutorial.dockFrontend.basics.BasicDockFrontendSet; 6 | import tutorial.support.Tutorial; 7 | 8 | @Tutorial(title="Core API", id="CoreAPI") 9 | public class CoreSet extends TutorialSet{ 10 | public CoreSet(){ 11 | super(BasicCoreSet.class, 12 | BasicDockFrontendSet.class, 13 | GuideCoreSet.class); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /docking-frames-ext-toolbar-tutorial/src/tutorial/toolbar/core/CoreToolbarTutorials.java: -------------------------------------------------------------------------------- 1 | package tutorial.toolbar.core; 2 | 3 | import tutorial.support.Tutorial; 4 | import tutorial.support.sets.TutorialSet; 5 | 6 | @Tutorial( title="Toolbar", id="CoreToolbar" ) 7 | public class CoreToolbarTutorials extends TutorialSet{ 8 | public CoreToolbarTutorials(){ 9 | super( ToolbarHelloWorld.class, 10 | ToolbarCustomization.class, 11 | ToolbarExpanding.class, 12 | WizardSplitDockStationTutorial.class ); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/theme/color/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Introduces an extension to the color management. Clients may define a {@link bibliothek.gui.dock.common.theme.color.CColorBridgeExtension}, this 3 | * extension will be used like a factory creating {@link bibliothek.gui.dock.common.theme.color.CColorBridge}s. These bridges then can override colors 4 | * from the framework. See also: {@link bibliothek.gui.dock.util.extension.ExtensionManager}. 5 | */ 6 | package bibliothek.gui.dock.common.theme.color; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/TitleWithTextField.html: -------------------------------------------------------------------------------- 1 | 2 | Dockables can have actions (buttons, checkboxes, ...), but what if you want a new type of action? For example 3 | a textfield? This example shows: 4 | 10 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/extension/gui/dock/preference/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Generic collection of preferences used in this framework. Intended to be 3 | * shown to the user so he can change the preferences. Clients might be 4 | * interested in implementing new {@link bibliothek.extension.gui.dock.preference.PreferenceModel}s for their own set of 5 | * properties or to use a {@link bibliothek.extension.gui.dock.preference.PreferenceStorage} to store preferences persistent. 6 | */ 7 | package bibliothek.extension.gui.dock.preference; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/common/guide/GuideCommonSet.java: -------------------------------------------------------------------------------- 1 | package tutorial.common.guide; 2 | 3 | import tutorial.support.Tutorial; 4 | import tutorial.support.sets.TutorialSet; 5 | 6 | @Tutorial(title="Examples from the guide", id="GuideCommon") 7 | public class GuideCommonSet extends TutorialSet{ 8 | public GuideCommonSet(){ 9 | super( CommonHelloWorld.class, 10 | MultipleDockables.class, 11 | PerspectivesIntroduction.class, 12 | PerspectivesMulti.class, 13 | PerspectivesHistory.class ); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /docking-frames-demo-help/src/bibliothek/help/Application.java: -------------------------------------------------------------------------------- 1 | package bibliothek.help; 2 | 3 | /** 4 | * A class that starts this application as a stand-alone application 5 | * expecting to have all possible access rights (that means no {@link SecurityManager} 6 | * installed). 7 | * @author Benjamin Sigg 8 | */ 9 | public class Application { 10 | /** 11 | * Starts the application. 12 | * @param args are ignored 13 | */ 14 | public static void main( String[] args ){ 15 | new Core( false, null ).startup(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/common/intern/color/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Various implementations of {@link bibliothek.gui.dock.util.color.ColorBridge} used by the themes of Common 3 | * to transfer colors from the {@link bibliothek.gui.dock.common.ColorMap} of {@link bibliothek.gui.dock.common.intern.CDockable}s 4 | * through the {@link bibliothek.gui.dock.util.color.ColorManager} to the {@link java.awt.Component}s which are related 5 | * to said dockables. 6 | */ 7 | package bibliothek.gui.dock.common.intern.color; -------------------------------------------------------------------------------- /docking-frames-dist/zip.xml: -------------------------------------------------------------------------------- 1 | 3 | bin 4 | / 5 | 6 | zip 7 | 8 | 9 | 10 | dock 11 | 12 | 13 | -------------------------------------------------------------------------------- /docking-frames-common/guide2/guide2.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99cThe top-level auxiliary file: C:\Users\Benjamin Sigg\workspace\[JavaForge]Common\guide2\guide2.aux 2 | I found no \citation commands---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]Common\guide2\guide2.aux 3 | I found no \bibdata command---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]Common\guide2\guide2.aux 4 | I found no \bibstyle command---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]Common\guide2\guide2.aux 5 | (There were 3 error messages) 6 | -------------------------------------------------------------------------------- /docking-frames-common/testing/bibliothek/test/inspect/NullInspectable.java: -------------------------------------------------------------------------------- 1 | package bibliothek.test.inspect; 2 | 3 | import bibliothek.test.Inspect; 4 | import bibliothek.test.Inspectable; 5 | import bibliothek.test.InspectionGraph; 6 | 7 | public class NullInspectable implements Inspectable{ 8 | public static final NullInspectable INSTANCE = new NullInspectable(); 9 | 10 | public Inspect inspect( InspectionGraph graph ){ 11 | DefaultInspect inspect = new DefaultInspect( graph ); 12 | inspect.setName( "null" ); 13 | return inspect; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/CommonAPI.html: -------------------------------------------------------------------------------- 1 | 2 | The Common API builds upon the Core API. It combines and configures features from the Core API, such that applications 3 | can easily use them.

4 | The strength of the Common API are its default settings, and that it is hiding the really complex things from the developer. 5 |

6 | If you want to just write an application, then the Common API is for you. If you want to implement additional features, 7 | then you need to study the Core API as well. 8 | -------------------------------------------------------------------------------- /docking-frames-glass-dist/zip.xml: -------------------------------------------------------------------------------- 1 | 3 | bin 4 | / 5 | 6 | zip 7 | 8 | 9 | 10 | glass 11 | 12 | 13 | -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/description.txt: -------------------------------------------------------------------------------- 1 | 2 | This application consists of some panels which show different notes. The user 3 | can add or remove notes at any time. Every note has an icon, a title and a color 4 | which can also be changed.
5 | Noteworthy features: 6 | 12 | -------------------------------------------------------------------------------- /docking-frames-common/guide/Guide.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99cThe top-level auxiliary file: C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]Common\guide\Guide.aux 2 | I found no \citation commands---while reading file C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]Common\guide\Guide.aux 3 | I found no \bibdata command---while reading file C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]Common\guide\Guide.aux 4 | I found no \bibstyle command---while reading file C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]Common\guide\Guide.aux 5 | (There were 3 error messages) 6 | -------------------------------------------------------------------------------- /docking-frames-common/src/bibliothek/gui/dock/support/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Elements that are used as base for more sophisticated features. At least one 3 | * of the following conditions is true for the elements in this package: 4 | * 10 | */ 11 | package bibliothek.gui.dock.support; -------------------------------------------------------------------------------- /docking-frames-core/guide/guide.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99cThe top-level auxiliary file: C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide\guide.aux 2 | I found no \citation commands---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide\guide.aux 3 | I found no \bibdata command---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide\guide.aux 4 | I found no \bibstyle command---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide\guide.aux 5 | (There were 3 error messages) 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/control/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes responsible to handle some global task. They are used directly 3 | * by a {@link bibliothek.gui.DockController} performing their task in the 4 | * realm of that DockController.
5 | * The DockController uses a 6 | * {@link bibliothek.gui.dock.control.DockControllerFactory} to 7 | * create instances of the handlers it needs, clients might provide an own 8 | * factory to change some behaviour of the framework. 9 | */ 10 | package bibliothek.gui.dock.control; -------------------------------------------------------------------------------- /docking-frames-core/guide/faq.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99cThe top-level auxiliary file: C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]DockingFrames\guide\faq.aux 2 | I found no \citation commands---while reading file C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]DockingFrames\guide\faq.aux 3 | I found no \bibdata command---while reading file C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]DockingFrames\guide\faq.aux 4 | I found no \bibstyle command---while reading file C:\Dateien\Java\ProjekteLongterm\dock\[JavaForge]DockingFrames\guide\faq.aux 5 | (There were 3 error messages) 6 | -------------------------------------------------------------------------------- /docking-frames-core/guide2/guide2.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99cThe top-level auxiliary file: C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide2\guide2.aux 2 | I found no \citation commands---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide2\guide2.aux 3 | I found no \bibdata command---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide2\guide2.aux 4 | I found no \bibstyle command---while reading file C:\Users\Benjamin Sigg\workspace\[JavaForge]DockingFrames\guide2\guide2.aux 5 | (There were 3 error messages) 6 | -------------------------------------------------------------------------------- /docking-frames-core/src/data/bibliothek/gui/dock/core/locale/text_zh_CN.properties: -------------------------------------------------------------------------------- 1 | close: \u5173\u95ed 2 | flap.direction.north: \u5411\u4e0a 3 | rename.cancel: \u53d6\u6d88 4 | split.maximize: \u6700\u5927\u5316 5 | screen.maximize: \u6700\u5927\u5316 6 | theme.basic: \u9ed8\u8ba4 [DICOM] 7 | preference.layout: \u5e03\u5c40 8 | preference.buttonContent.text: \u6587\u672c 9 | preference.dialog.title: \u8bbe\u7f6e 10 | preference.dialog.cancel.text: \u53d6\u6d88 11 | preference.dialog.apply.text: \u786e\u8ba4 12 | preference.dialog.reset.text: \u91cd\u8bbe 13 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/util/extension/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains classes to create and manage extensions. An extension is a plug-in 3 | * that is integrated into the framework and treated as if it were always present. 4 | * Modules of the framework (or of the plug-in) need to define extension-points at which 5 | * new code can be introduced. Also modules have to ask the 6 | * {@link bibliothek.gui.dock.util.extension.ExtensionManager} for all the extensions fitting a particular 7 | * extension point. 8 | */ 9 | package bibliothek.gui.dock.util.extension; 10 | -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/event/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Listeners, adapters and events used in the whole framework.
3 | * 11 | */ 12 | package bibliothek.gui.dock.event; -------------------------------------------------------------------------------- /docking-frames-demo-notes/src/data/bibliothek/notes/icons/icons.ini: -------------------------------------------------------------------------------- 1 | color.chooser = color_swatch.png 2 | color = palette.png 3 | color.blue = flag_blue.png 4 | color.green = flag_green.png 5 | color.orange = flag_orange.png 6 | color.pink = flag_pink.png 7 | color.purple = flag_purple.png 8 | color.red = flag_red.png 9 | color.yellow = flag_yellow.png 10 | 11 | icon = folder_explore.png 12 | title = pencil.png 13 | 14 | delete = delete.png 15 | copy = page_copy.png 16 | 17 | list.delete = page_delete.png 18 | list.new = page_add.png 19 | list = application_view_list.png 20 | 21 | application = clock.png -------------------------------------------------------------------------------- /docking-frames-core/src/bibliothek/gui/dock/security/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * A package dealing with the issues of Applets and Wepstart-applications.
3 | * DockingFrames monitors mouse- and other events globally. That is not 4 | * allowed in a restricted (or secure) environment, the {@link java.lang.SecurityManager} 5 | * prevents it. The classes in this package are capable to "simulate" global 6 | * monitors without really creating them. The reason why these classes are not 7 | * used in a normal application is, that they do not work very efficient. 8 | */ 9 | package bibliothek.gui.dock.security; -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/TutorialExtension.java: -------------------------------------------------------------------------------- 1 | package tutorial; 2 | 3 | import tutorial.support.sets.TutorialSet; 4 | 5 | /** 6 | * Allows to load additional classes as tutorials. 7 | * @author Benjamin Sigg 8 | */ 9 | public interface TutorialExtension { 10 | /** 11 | * Tells what additional classes are available for the {@link TutorialSet} set. 12 | * @param set the set into which to add additional tutorials 13 | * @return the additional tutorials or {@link TutorialSet}s 14 | */ 15 | public Class[] getTutorials( Class set ); 16 | } 17 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/core/guide/GuideCoreSet.java: -------------------------------------------------------------------------------- 1 | package tutorial.core.guide; 2 | 3 | import tutorial.support.Tutorial; 4 | import tutorial.support.sets.TutorialSet; 5 | 6 | @Tutorial(title="Examples from the guide", id="GuideCore") 7 | public class GuideCoreSet extends TutorialSet{ 8 | public GuideCoreSet(){ 9 | super( PlaceholderExample.class, 10 | PersistentLayoutExample.class, 11 | PerspectiveExample.class, 12 | ActionsExample.class, 13 | GroupActionExample.class, 14 | TitleExample.class, 15 | ColorExample.class, 16 | DisplayerExample.class ); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /docking-frames-core/guide2/introduction/chapter.tex.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{introduction/chapter.tex}{ 3 | \setcounter{page}{4} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{0} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{section}{0} 13 | \setcounter{subsection}{0} 14 | \setcounter{subsubsection}{0} 15 | \setcounter{paragraph}{0} 16 | \setcounter{subparagraph}{0} 17 | \setcounter{figure}{0} 18 | \setcounter{table}{0} 19 | \setcounter{lstnumber}{1} 20 | \setcounter{lstlisting}{0} 21 | } 22 | -------------------------------------------------------------------------------- /docking-frames-core/guide2/preferences/properties.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@setckpt{preferences/properties}{ 3 | \setcounter{page}{54} 4 | \setcounter{equation}{0} 5 | \setcounter{enumi}{8} 6 | \setcounter{enumii}{0} 7 | \setcounter{enumiii}{0} 8 | \setcounter{enumiv}{0} 9 | \setcounter{footnote}{0} 10 | \setcounter{mpfootnote}{0} 11 | \setcounter{part}{0} 12 | \setcounter{section}{8} 13 | \setcounter{subsection}{4} 14 | \setcounter{subsubsection}{0} 15 | \setcounter{paragraph}{0} 16 | \setcounter{subparagraph}{0} 17 | \setcounter{figure}{7} 18 | \setcounter{table}{0} 19 | \setcounter{lstnumber}{11} 20 | \setcounter{lstlisting}{0} 21 | } 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | .project 3 | .classpath 4 | .settings/ 5 | 6 | bin/ 7 | target/ 8 | logs/ 9 | 10 | release.properties 11 | pom.xml.releaseBackup 12 | 13 | # TeX binaries and editor files 14 | docking-frames-common/guide/Guide.dvi 15 | docking-frames-common/guide2/guide2.dvi 16 | docking-frames-common/guide/Guide.tex.backup 17 | docking-frames-common/guide2/locations/chapter.tex 18 | docking-frames-common/guide2/locations/chapter.tex.backup 19 | docking-frames-core/guide/guide.dvi 20 | docking-frames-core/guide/guide.tex.backup 21 | docking-frames-core/guide2/dragNdrop/chapter.tex.backup 22 | docking-frames-core/guide2/guide2.dvi 23 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/BasicsCore.html: -------------------------------------------------------------------------------- 1 | These examples show simple, basic tasks done with the Core framework only (not using DockFrontend). 2 | 3 |
    4 |
  1. Hello World: a very simple application
  2. 5 |
  3. The Stations: shows all the available stations
  4. 6 |
  5. SplitDockStation: how to define the location and size of Dockables when using a SplitDockStation
  6. 7 |
  7. Themes: shows all the available themes
  8. 8 |
  9. Persistent Layout: how to store the location and size of Dockables in a file
  10. 9 |
  11. Actions: how to use the title of a Dockable as toolbar
  12. 10 |
11 | 12 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/support/ColorIcon.java: -------------------------------------------------------------------------------- 1 | package tutorial.support; 2 | 3 | import java.awt.Color; 4 | import java.awt.Component; 5 | import java.awt.Graphics; 6 | 7 | import javax.swing.Icon; 8 | 9 | public class ColorIcon implements Icon{ 10 | private Color color; 11 | 12 | public ColorIcon( Color color ){ 13 | this.color = color; 14 | } 15 | 16 | public int getIconHeight(){ 17 | return 16; 18 | } 19 | public int getIconWidth(){ 20 | return 16; 21 | } 22 | 23 | public void paintIcon( Component c, Graphics g, int x, int y ){ 24 | g.setColor( color ); 25 | g.fillOval( x+3, y+3, 10, 10 ); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /docking-frames-common/testing/bibliothek/test/Inspection.java: -------------------------------------------------------------------------------- 1 | package bibliothek.test; 2 | 3 | import java.awt.BorderLayout; 4 | 5 | import javax.swing.JFrame; 6 | 7 | import bibliothek.gui.dock.common.CControl; 8 | 9 | public class Inspection { 10 | public static void open( CControl control ){ 11 | open( control, new PlaceholderInspection() ); 12 | } 13 | 14 | private static void open( Object root, InspectionGraph graph ){ 15 | JFrame frame = new JFrame( "Inspection" ); 16 | frame.add( new InspectionPanel( root, graph ), BorderLayout.CENTER ); 17 | frame.setBounds( 400, 400, 600, 400 ); 18 | frame.setVisible( true ); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/tutorial/support/CopyCodeAction.java: -------------------------------------------------------------------------------- 1 | package tutorial.support; 2 | 3 | import javax.swing.ImageIcon; 4 | 5 | import bibliothek.gui.dock.common.action.CButton; 6 | 7 | public class CopyCodeAction extends CButton{ 8 | private CodePanel panel; 9 | 10 | public CopyCodeAction( CodePanel panel ){ 11 | this.panel = panel; 12 | setText("Copy all"); 13 | setTooltip("Copy the entire source code"); 14 | 15 | ImageIcon icon = new ImageIcon( getClass().getResource("/data/tutorial/icons/copy.png") ); 16 | setIcon( icon ); 17 | } 18 | 19 | @Override 20 | protected void action(){ 21 | panel.copy(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /docking-frames-demo-tutorial/src/data/tutorial/Actions.html: -------------------------------------------------------------------------------- 1 | Actions can be used to build some kind of toolbar. This example shows some of the most 2 | often used actions. If you start the application you will see the actions on the top right of the 3 | frame. From left to right the actions are: 4 | 5 | 11 | 12 | --------------------------------------------------------------------------------