| | |
| | | } |
| | | |
| | | /** |
| | | * |
| | | * Initialize UI |
| | | * Called on document.ready |
| | | */ |
| | | function init() |
| | | { |
| | | rcmail.addEventListener('message', message_displayed); |
| | | |
| | | |
| | | /*** mail task ***/ |
| | | if (rcmail.env.task == 'mail') { |
| | | rcmail.addEventListener('menu-open', show_listoptions); |
| | | rcmail.addEventListener('menu-save', save_listoptions); |
| | | rcmail.addEventListener('responseafterlist', function(e){ switch_view_mode(rcmail.env.threading ? 'thread' : 'list') }); |
| | | |
| | | var dragmenu = $('#dragmessagemenu'); |
| | | if (dragmenu.length) { |
| | |
| | | popups.dragmessagemenu = dragmenu; |
| | | } |
| | | |
| | | var previewframe = $('#mailpreviewframe').is(':visible'); |
| | | $('#mailpreviewtoggle').addClass(previewframe ? 'enabled' : 'closed').click(function(e){ toggle_preview_pane(e); return false }); |
| | | $('#maillistmode').addClass(rcmail.env.threading ? '' : 'selected').click(function(e){ switch_view_mode('list'); return false }); |
| | | $('#mailthreadmode').addClass(rcmail.env.threading ? 'selected' : '').click(function(e){ switch_view_mode('thread'); return false }); |
| | | |
| | | if (rcmail.env.action == 'show' || rcmail.env.action == 'preview') { |
| | | layout_messageview(); |
| | | $("#all-headers").resizable({ handles: 's', minHeight: 50 }); |
| | | $('#previewheaderstoggle').click(function(e){ toggle_preview_headers(this); return false }); |
| | | } |
| | | else if (rcmail.env.action == 'compose') { |
| | | rcmail.addEventListener('aftertoggle-editor', function(){ window.setTimeout(function(){ layout_composeview() }, 100); }); |
| | | rcmail.addEventListener('aftertoggle-editor', function(){ window.setTimeout(function(){ layout_composeview() }, 200); }); |
| | | rcmail.addEventListener('aftersend-attachment', show_uploadform); |
| | | rcmail.addEventListener('add-recipient', function(p){ show_header_row(p.field, true); }); |
| | | layout_composeview(); |
| | | |
| | | // Show input elements with non-empty value |
| | | var field, fields = ['cc', 'bcc', 'replyto', 'followupto']; |
| | | for (var f=0; f < fields.length; f++) { |
| | | if ((field = $('#_'+fields[f])) && field.length && field.val() != '') |
| | | show_header_row(fields[f], true); |
| | | } |
| | | |
| | | $('#composeoptionstoggle').parent().click(function(){ |
| | | $('#composeoptionstoggle').toggleClass('enabled'); |
| | |
| | | }).css('cursor', 'pointer'); |
| | | |
| | | new rcube_splitter({ id:'composesplitterv', p1:'#composeview-left', p2:'#composeview-right', |
| | | orientation:'v', relative:true, start:248, min:170, size:12 }).init(); |
| | | orientation:'v', relative:true, start:248, min:170, size:12, render:layout_composeview }).init(); |
| | | } |
| | | else if (rcmail.env.action == 'list' || !rcmail.env.action) { |
| | | mailviewsplit = new rcube_splitter({ id:'mailviewsplitter', p1:'#mailview-top', p2:'#mailview-bottom', |
| | | orientation:'h', relative:true, start:310, min:150, size:0, offset:-22 }); |
| | | if (previewframe) |
| | | mailviewsplit.init(); |
| | | var previewframe = $('#mailpreviewframe').is(':visible'); |
| | | $('#mailpreviewtoggle').addClass(previewframe ? 'enabled' : 'closed').click(function(e){ toggle_preview_pane(e); return false }); |
| | | $('#maillistmode').addClass(rcmail.env.threading ? '' : 'selected').click(function(e){ switch_view_mode('list'); return false }); |
| | | $('#mailthreadmode').addClass(rcmail.env.threading ? 'selected' : '').click(function(e){ switch_view_mode('thread'); return false }); |
| | | |
| | | rcmail.addEventListener('setquota', update_quota); |
| | | mailviewsplit = new rcube_splitter({ id:'mailviewsplitter', p1:'#mailview-top', p2:'#mailview-bottom', |
| | | orientation:'h', relative:true, start:310, min:150, size:0, offset:-22 }); |
| | | if (previewframe) |
| | | mailviewsplit.init(); |
| | | |
| | | rcmail.addEventListener('setquota', update_quota); |
| | | } |
| | | |
| | | if ($('#mailview-left').length) { |
| | |
| | | orientation:'v', relative:true, start:248, min:150, size:12, callback:render_mailboxlist, render:resize_leftcol }).init(); |
| | | } |
| | | } |
| | | /*** settings task ***/ |
| | | else if (rcmail.env.task == 'settings') { |
| | | rcmail.addEventListener('init', function(){ |
| | | var tab = '#settingstabpreferences'; |
| | |
| | | orientation:'v', relative:true, start:305, min:150, size:12 }).init(); |
| | | } |
| | | } |
| | | /*** addressbook task ***/ |
| | | else if (rcmail.env.task == 'addressbook') { |
| | | rcmail.addEventListener('afterupload-photo', show_uploadform); |
| | | |
| | |
| | | orientation:'v', relative:true, start:296, min:220, size:12 }).init(); |
| | | } |
| | | } |
| | | /*** login page ***/ |
| | | else if (rcmail.env.task == 'login') { |
| | | if (bw.ie && bw.vendver < 9) { |
| | | var popup = $('<div>') |
| | |
| | | } |
| | | } |
| | | }); |
| | | |
| | | $(window).resize(resize); |
| | | |
| | | $(window).resize(function(e) { |
| | | // check target due to bugs in jquery |
| | | // http://bugs.jqueryui.com/ticket/7514 |
| | | // http://bugs.jquery.com/ticket/9841 |
| | | if (e.target == window) resize(); |
| | | }); |
| | | } |
| | | |
| | | /** |
| | |
| | | width: 420, |
| | | minHeight: 90 |
| | | }).show(); |
| | | |
| | | window.setTimeout(function(){ me.messagedialog.dialog('close'); }, p.timeout / 2); |
| | | |
| | | window.setTimeout(function(){ me.messagedialog.dialog('close'); }, Math.max(2000, p.timeout / 2)); |
| | | } |
| | | } |
| | | |
| | |
| | | function layout_composeview() |
| | | { |
| | | var body = $('#composebody'), |
| | | form = $('#compose-content'), |
| | | bottom = $('#composeview-bottom'), |
| | | w, h; |
| | | |
| | | bottom.css('height', (bottom.parent().height() - bottom.position().top) + 'px'); |
| | | bottom.css('height', (form.height() - bottom.position().top) + 'px'); |
| | | |
| | | w = body.parent().width() - 8; |
| | | w = body.parent().width() - 6; |
| | | h = body.parent().height() - 36; |
| | | body.width(w).height(h); |
| | | |
| | | if (window.tinyMCE && tinyMCE.get('composebody')) { |
| | | $('#composebody_tbl').width((w+12)+'px').height('').css('margin-top', '1px'); |
| | | $('#composebody_ifr').width((w+12)+'px').height((h-22)+'px'); |
| | | $('#composebody_tbl').width((w+10)+'px').height('').css('margin-top', '1px'); |
| | | $('#composebody_ifr').width((w+10)+'px').height((h-22)+'px'); |
| | | } |
| | | else { |
| | | $('#googie_edit_layer').height(h+'px'); |
| | | } |
| | | |
| | | var abooks = $('#directorylist'); |
| | | $('#compose-contacts .scroller').css('top', abooks.position().top + abooks.outerHeight()); |
| | | } |
| | | |
| | | |
| | |
| | | rcmail.message_list.scrollto(uid); |
| | | |
| | | rcmail.command('save-pref', { name:'preview_pane', value:(visible?1:0) }); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Switch between short and full headers display in message preview |
| | | */ |
| | | function toggle_preview_headers(button) |
| | | { |
| | | $('#preview-shortheaders').toggle(); |
| | | var full = $('#preview-allheaders').toggle(); |
| | | |
| | | // add toggle button to full headers table |
| | | if (!full.data('mod')) { |
| | | $('<a>').attr('href', '#hide') |
| | | .addClass('iconlink remove') |
| | | .html('Hide') |
| | | .appendTo($('<td>').appendTo($('tr:first', full))) |
| | | .click(function(){ toggle_preview_headers(this);return false }); |
| | | full.data('mod', true); |
| | | } |
| | | } |
| | | |
| | | |
| | |
| | | /** |
| | | * |
| | | */ |
| | | function show_header_row(which) |
| | | function show_header_row(which, updated) |
| | | { |
| | | if (compose_headers[which]) |
| | | var row = $('#compose-' + which); |
| | | if (row.is(':visible')) |
| | | return; // nothing to be done here |
| | | |
| | | if (compose_headers[which] && !updated) |
| | | $('#_' + which).val(compose_headers[which]); |
| | | $('#compose-' + which).show(); |
| | | |
| | | row.show(); |
| | | $('#' + which + '-link').hide(); |
| | | layout_composeview(); |
| | | return false; |
| | |
| | | */ |
| | | function init_tabs(elem, current) |
| | | { |
| | | var id = elem.id, |
| | | content = $(elem), |
| | | var content = $(elem), |
| | | id = content.get(0).id, |
| | | fs = content.children('fieldset'); |
| | | |
| | | if (!fs.length) |
| | |
| | | |
| | | if (!id) { |
| | | id = 'rcmtabcontainer'; |
| | | elem.attr('id', id); |
| | | content.attr('id', id); |
| | | } |
| | | |
| | | // first hide not selected tabs |
| | |
| | | { |
| | | var frame = $('<iframe>').attr('id', 'aboutframe') |
| | | .attr('src', rcmail.url('settings/about')) |
| | | .attr('frameborder', '0') |
| | | .appendTo(document.body); |
| | | |
| | | var h = Math.floor($(window).height() * 0.75); |
| | |
| | | |
| | | |
| | | /** |
| | | * Roundcube splitter GUI class |
| | | * Roundcube UI splitter class |
| | | * |
| | | * @constructor |
| | | */ |
| | |
| | | this.callback = p.callback; |
| | | |
| | | var me = this; |
| | | rcube_splitter._instances[this.id] = me; |
| | | |
| | | this.init = function() |
| | | { |
| | | this.p1 = $(this.p.p1); |
| | | this.p2 = $(this.p.p2); |
| | | |
| | | // check if referenced elements exist, otherwise abort |
| | | if (!this.p1.length || !this.p2.length) |
| | | return; |
| | | |
| | | // create and position the handle for this splitter |
| | | this.p1pos = this.relative ? this.p1.position() : this.p1.offset(); |
| | |
| | | this.handle.css({ left:left+'px', top:'0px' }); |
| | | } |
| | | |
| | | this.elm = this.handle.get(0); |
| | | |
| | | // listen to window resize on IE |
| | | if (bw.ie) |
| | | $(window).resize(function(e){ onResize(e) }); |
| | | $(window).resize(onResize); |
| | | |
| | | // read saved position from cookie |
| | | var cookie = bw.get_cookie(this.id); |
| | |
| | | } // end class rcube_splitter |
| | | |
| | | |
| | | // static getter for splitter instances |
| | | rcube_splitter._instances = {}; |
| | | |
| | | rcube_splitter.get_instance = function(id) |
| | | { |
| | | return rcube_splitter._instances[id]; |
| | | }; |
| | | |