mediawiki-extensions-Visual.../modules/ve-mw/ui/inspectors/ve.ui.MWGalleryInspector.js
James D. Forrester fbdff76263 Update VE core submodule to master (f2277ea)
New changes:
56de6f5 Localisation updates from https://translatewiki.net.
f8bda64 Widgetise demo menu
6ac48d8 Localisation updates from https://translatewiki.net.
365e131 builderloader: Omit value for boolean "disabled" attribute per HTML5
706e4b3 Prevent double counting of DM nodes in getNodeAndOffset
b141a7d Update OOjs UI to v0.1.0-pre (d2451ac748)
c5b3921 Localisation updates from https://translatewiki.net.
1606983 Update reference to ConfirmationDialog to use MessageDialog

Deletions:
* Styles for ve.ui.MWBetaWelcomeDialog - not needed anymore because
  OO.ui.MessageDialog provides them
* Styles for ve.ui.MWGalleryInspector - not needed anymore because
  ve.ui.MWExtensionInspector provides part of them and the rest are being
  replaced by programatic sizing

Modifications:
* ve.ui.MWLinkTargetInputWidget - Added support for validation and href
  getter
* Split message between tool and dialog title for ve.ui.MWEditModeTool
  and ve.ui.MWWikitextSwitchConfirmDialog

General changes:
* Updated inheritance.
* Added manager param to constructors of dialogs and inspectors.
* Updated use of show/hide with toggle.
* Added meaningful descriptions of dialog and inspector classes.
* Configured dialog and inspector sizes statically.
* Configured dialog action buttons statically.
* Interfaced with OO.ui.ActionSet to control action buttons.
* Moved applyChanges code into getActionProcess methods.
* Always using .next in setup/ready process getters and .first in
  hold/teardown process getters.

Change-Id: Ia74732e6e32c0808eee021f0a26225b9e6c3f971
2014-07-14 23:24:45 +00:00

56 lines
1.4 KiB
JavaScript

/*!
* VisualEditor UserInterface MWGalleryInspector class.
*
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/*global mw */
/**
* Inspector for editing MediaWiki galleries.
*
* @class
* @extends ve.ui.MWExtensionInspector
*
* @constructor
* @param {OO.ui.WindowManager} manager Manager of window
* @param {Object} [config] Configuration options
*/
ve.ui.MWGalleryInspector = function VeUiMWGalleryInspector( manager, config ) {
// Parent constructor
ve.ui.MWExtensionInspector.call( this, manager, config );
this.$element.addClass( 've-ui-mwGalleryInspector' );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWGalleryInspector, ve.ui.MWExtensionInspector );
/* Static properties */
ve.ui.MWGalleryInspector.static.name = 'gallery';
ve.ui.MWGalleryInspector.static.icon = 'gallery';
ve.ui.MWGalleryInspector.static.size = 'large';
ve.ui.MWGalleryInspector.static.title =
OO.ui.deferMsg( 'visualeditor-mwgalleryinspector-title' );
ve.ui.MWGalleryInspector.static.nodeModel = ve.dm.MWGalleryNode;
/* Methods */
/** */
ve.ui.MWGalleryInspector.prototype.getInputPlaceholder = function () {
// 'File:' is always in content language
return mw.config.get( 'wgFormattedNamespaces' )['6'] + ':' +
ve.msg( 'visualeditor-mwgalleryinspector-placeholder' );
};
/* Registration */
ve.ui.windowFactory.register( ve.ui.MWGalleryInspector );