calendar: Reindent code
We are about to touch some code that still uses the legacy indentation style. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2161>
This commit is contained in:
parent
de485c8f47
commit
57b819ae2d
@ -155,11 +155,13 @@ const CalendarServerIface = loadInterfaceXML('org.gnome.Shell.CalendarServer');
|
|||||||
const CalendarServerInfo = Gio.DBusInterfaceInfo.new_for_xml(CalendarServerIface);
|
const CalendarServerInfo = Gio.DBusInterfaceInfo.new_for_xml(CalendarServerIface);
|
||||||
|
|
||||||
function CalendarServer() {
|
function CalendarServer() {
|
||||||
return new Gio.DBusProxy({ g_connection: Gio.DBus.session,
|
return new Gio.DBusProxy({
|
||||||
g_interface_name: CalendarServerInfo.name,
|
g_connection: Gio.DBus.session,
|
||||||
g_interface_info: CalendarServerInfo,
|
g_interface_name: CalendarServerInfo.name,
|
||||||
g_name: 'org.gnome.Shell.CalendarServer',
|
g_interface_info: CalendarServerInfo,
|
||||||
g_object_path: '/org/gnome/Shell/CalendarServer' });
|
g_name: 'org.gnome.Shell.CalendarServer',
|
||||||
|
g_object_path: '/org/gnome/Shell/CalendarServer',
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function _datesEqual(a, b) {
|
function _datesEqual(a, b) {
|
||||||
@ -465,9 +467,11 @@ var Calendar = GObject.registerClass({
|
|||||||
this._topBox = new St.BoxLayout();
|
this._topBox = new St.BoxLayout();
|
||||||
layout.attach(this._topBox, 0, 0, offsetCols + 7, 1);
|
layout.attach(this._topBox, 0, 0, offsetCols + 7, 1);
|
||||||
|
|
||||||
this._backButton = new St.Button({ style_class: 'calendar-change-month-back pager-button',
|
this._backButton = new St.Button({
|
||||||
accessible_name: _("Previous month"),
|
style_class: 'calendar-change-month-back pager-button',
|
||||||
can_focus: true });
|
accessible_name: _('Previous month'),
|
||||||
|
can_focus: true,
|
||||||
|
});
|
||||||
this._backButton.add_actor(new St.Icon({ icon_name: 'pan-start-symbolic' }));
|
this._backButton.add_actor(new St.Icon({ icon_name: 'pan-start-symbolic' }));
|
||||||
this._topBox.add(this._backButton);
|
this._topBox.add(this._backButton);
|
||||||
this._backButton.connect('clicked', this._onPrevMonthButtonClicked.bind(this));
|
this._backButton.connect('clicked', this._onPrevMonthButtonClicked.bind(this));
|
||||||
@ -480,9 +484,11 @@ var Calendar = GObject.registerClass({
|
|||||||
});
|
});
|
||||||
this._topBox.add_child(this._monthLabel);
|
this._topBox.add_child(this._monthLabel);
|
||||||
|
|
||||||
this._forwardButton = new St.Button({ style_class: 'calendar-change-month-forward pager-button',
|
this._forwardButton = new St.Button({
|
||||||
accessible_name: _("Next month"),
|
style_class: 'calendar-change-month-forward pager-button',
|
||||||
can_focus: true });
|
accessible_name: _('Next month'),
|
||||||
|
can_focus: true,
|
||||||
|
});
|
||||||
this._forwardButton.add_actor(new St.Icon({ icon_name: 'pan-end-symbolic' }));
|
this._forwardButton.add_actor(new St.Icon({ icon_name: 'pan-end-symbolic' }));
|
||||||
this._topBox.add(this._forwardButton);
|
this._topBox.add(this._forwardButton);
|
||||||
this._forwardButton.connect('clicked', this._onNextMonthButtonClicked.bind(this));
|
this._forwardButton.connect('clicked', this._onNextMonthButtonClicked.bind(this));
|
||||||
@ -499,9 +505,11 @@ var Calendar = GObject.registerClass({
|
|||||||
// Could use iter.toLocaleFormat('%a') but that normally gives three characters
|
// Could use iter.toLocaleFormat('%a') but that normally gives three characters
|
||||||
// and we want, ideally, a single character for e.g. S M T W T F S
|
// and we want, ideally, a single character for e.g. S M T W T F S
|
||||||
let customDayAbbrev = _getCalendarDayAbbreviation(iter.getDay());
|
let customDayAbbrev = _getCalendarDayAbbreviation(iter.getDay());
|
||||||
let label = new St.Label({ style_class: 'calendar-day-base calendar-day-heading',
|
let label = new St.Label({
|
||||||
text: customDayAbbrev,
|
style_class: 'calendar-day-base calendar-day-heading',
|
||||||
can_focus: true });
|
text: customDayAbbrev,
|
||||||
|
can_focus: true,
|
||||||
|
});
|
||||||
label.accessible_name = iter.toLocaleFormat('%A');
|
label.accessible_name = iter.toLocaleFormat('%A');
|
||||||
let col;
|
let col;
|
||||||
if (this.get_text_direction() == Clutter.TextDirection.RTL)
|
if (this.get_text_direction() == Clutter.TextDirection.RTL)
|
||||||
@ -629,8 +637,10 @@ var Calendar = GObject.registerClass({
|
|||||||
let nRows = 8;
|
let nRows = 8;
|
||||||
while (row < nRows) {
|
while (row < nRows) {
|
||||||
// xgettext:no-javascript-format
|
// xgettext:no-javascript-format
|
||||||
let button = new St.Button({ label: iter.toLocaleFormat(C_("date day number format", "%d")),
|
let button = new St.Button({
|
||||||
can_focus: true });
|
label: iter.toLocaleFormat(C_('date day number format', '%d')),
|
||||||
|
can_focus: true,
|
||||||
|
});
|
||||||
let rtl = button.get_text_direction() == Clutter.TextDirection.RTL;
|
let rtl = button.get_text_direction() == Clutter.TextDirection.RTL;
|
||||||
|
|
||||||
if (this._eventSource instanceof EmptyEventSource)
|
if (this._eventSource instanceof EmptyEventSource)
|
||||||
@ -682,9 +692,11 @@ var Calendar = GObject.registerClass({
|
|||||||
this._buttons.push(button);
|
this._buttons.push(button);
|
||||||
|
|
||||||
if (this._useWeekdate && iter.getDay() == 4) {
|
if (this._useWeekdate && iter.getDay() == 4) {
|
||||||
let label = new St.Label({ text: iter.toLocaleFormat('%V'),
|
const label = new St.Label({
|
||||||
style_class: 'calendar-day-base calendar-week-number',
|
text: iter.toLocaleFormat('%V'),
|
||||||
can_focus: true });
|
style_class: 'calendar-day-base calendar-week-number',
|
||||||
|
can_focus: true,
|
||||||
|
});
|
||||||
let weekFormat = Shell.util_translate_time_string(N_("Week %V"));
|
let weekFormat = Shell.util_translate_time_string(N_("Week %V"));
|
||||||
label.clutter_text.y_align = Clutter.ActorAlign.CENTER;
|
label.clutter_text.y_align = Clutter.ActorAlign.CENTER;
|
||||||
label.accessible_name = iter.toLocaleFormat(weekFormat);
|
label.accessible_name = iter.toLocaleFormat(weekFormat);
|
||||||
@ -746,14 +758,16 @@ class NotificationMessage extends MessageList.Message {
|
|||||||
if (!this._closed)
|
if (!this._closed)
|
||||||
this.close();
|
this.close();
|
||||||
});
|
});
|
||||||
this._updatedId = notification.connect('updated',
|
this._updatedId =
|
||||||
this._onUpdated.bind(this));
|
notification.connect('updated', this._onUpdated.bind(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
_getIcon() {
|
_getIcon() {
|
||||||
if (this.notification.gicon) {
|
if (this.notification.gicon) {
|
||||||
return new St.Icon({ gicon: this.notification.gicon,
|
return new St.Icon({
|
||||||
icon_size: MESSAGE_ICON_SIZE });
|
gicon: this.notification.gicon,
|
||||||
|
icon_size: MESSAGE_ICON_SIZE,
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
return this.notification.source.createIcon(MESSAGE_ICON_SIZE);
|
return this.notification.source.createIcon(MESSAGE_ICON_SIZE);
|
||||||
}
|
}
|
||||||
@ -836,7 +850,7 @@ class NotificationSection extends MessageList.MessageListSection {
|
|||||||
this._onSourceDestroy(source, obj);
|
this._onSourceDestroy(source, obj);
|
||||||
});
|
});
|
||||||
obj.notificationAddedId = source.connect('notification-added',
|
obj.notificationAddedId = source.connect('notification-added',
|
||||||
this._onNotificationAdded.bind(this));
|
this._onNotificationAdded.bind(this));
|
||||||
|
|
||||||
this._sources.set(source, obj);
|
this._sources.set(source, obj);
|
||||||
}
|
}
|
||||||
@ -935,8 +949,11 @@ class CalendarMessageList extends St.Widget {
|
|||||||
this._placeholder = new Placeholder();
|
this._placeholder = new Placeholder();
|
||||||
this.add_actor(this._placeholder);
|
this.add_actor(this._placeholder);
|
||||||
|
|
||||||
let box = new St.BoxLayout({ vertical: true,
|
let box = new St.BoxLayout({
|
||||||
x_expand: true, y_expand: true });
|
vertical: true,
|
||||||
|
x_expand: true,
|
||||||
|
y_expand: true,
|
||||||
|
});
|
||||||
this.add_actor(box);
|
this.add_actor(box);
|
||||||
|
|
||||||
this._scrollView = new St.ScrollView({
|
this._scrollView = new St.ScrollView({
|
||||||
@ -986,11 +1003,13 @@ class CalendarMessageList extends St.Widget {
|
|||||||
this._clearButton, 'visible',
|
this._clearButton, 'visible',
|
||||||
GObject.BindingFlags.INVERT_BOOLEAN);
|
GObject.BindingFlags.INVERT_BOOLEAN);
|
||||||
|
|
||||||
this._sectionList = new St.BoxLayout({ style_class: 'message-list-sections',
|
this._sectionList = new St.BoxLayout({
|
||||||
vertical: true,
|
style_class: 'message-list-sections',
|
||||||
x_expand: true,
|
vertical: true,
|
||||||
y_expand: true,
|
x_expand: true,
|
||||||
y_align: Clutter.ActorAlign.START });
|
y_expand: true,
|
||||||
|
y_align: Clutter.ActorAlign.START,
|
||||||
|
});
|
||||||
this._sectionList.connect('actor-added', this._sync.bind(this));
|
this._sectionList.connect('actor-added', this._sync.bind(this));
|
||||||
this._sectionList.connect('actor-removed', this._sync.bind(this));
|
this._sectionList.connect('actor-removed', this._sync.bind(this));
|
||||||
this._scrollView.add_actor(this._sectionList);
|
this._scrollView.add_actor(this._sectionList);
|
||||||
|
Loading…
Reference in New Issue
Block a user