[Libreoffice-commits] core.git: Branch 'feature/gsoc15-open-remote-files-dialog' - 3 commits - fpicker/source fpicker/uiconfig
Szymon Kłos
eszkadev at gmail.com
Fri Aug 21 06:54:09 PDT 2015
fpicker/source/office/RemoteFilesDialog.cxx | 6 ++++++
fpicker/uiconfig/ui/remotefilesdialog.ui | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
New commits:
commit 5097de0f16bb30458011d42f28314ffd16510497
Author: Szymon Kłos <eszkadev at gmail.com>
Date: Fri Aug 21 12:10:07 2015 +0200
wider dialog
Change-Id: Ie90920c6fcd797b49cc16487cf4754822f771cf0
diff --git a/fpicker/uiconfig/ui/remotefilesdialog.ui b/fpicker/uiconfig/ui/remotefilesdialog.ui
index 7859348..00e14da 100644
--- a/fpicker/uiconfig/ui/remotefilesdialog.ui
+++ b/fpicker/uiconfig/ui/remotefilesdialog.ui
@@ -186,7 +186,7 @@
</child>
<child>
<object class="GtkBox" id="container">
- <property name="width_request">500</property>
+ <property name="width_request">555</property>
<property name="height_request">200</property>
<property name="visible">True</property>
<property name="can_focus">False</property>
commit 97c5d774fbaa8b077abbd152cea99d8fad707bec
Author: Szymon Kłos <eszkadev at gmail.com>
Date: Fri Aug 21 12:04:27 2015 +0200
disable interface after service delete
Change-Id: Ia6706ba12154bab9b36da8582190db7ca6af1072
diff --git a/fpicker/source/office/RemoteFilesDialog.cxx b/fpicker/source/office/RemoteFilesDialog.cxx
index fc62c07e..dc7e0c2 100644
--- a/fpicker/source/office/RemoteFilesDialog.cxx
+++ b/fpicker/source/office/RemoteFilesDialog.cxx
@@ -799,6 +799,9 @@ IMPL_LINK_TYPED ( RemoteFilesDialog, EditServiceMenuHdl, MenuButton *, pButton,
m_pAddService_btn->SetPopupMenu( NULL );
m_bIsUpdated = true;
+
+ m_bIsConnected = false;
+ EnableControls();
}
}
}
commit 4ca218c4c33bac67e6c8898fdbc4ac2800fe24e7
Author: Szymon Kłos <eszkadev at gmail.com>
Date: Fri Aug 21 11:47:52 2015 +0200
focus for the file list after opening folder using a tree
Change-Id: I7cf75e3fb734b4bf0be9135c200130b8e86bf54f
diff --git a/fpicker/source/office/RemoteFilesDialog.cxx b/fpicker/source/office/RemoteFilesDialog.cxx
index c54eca7..fc62c07e 100644
--- a/fpicker/source/office/RemoteFilesDialog.cxx
+++ b/fpicker/source/office/RemoteFilesDialog.cxx
@@ -977,7 +977,10 @@ IMPL_LINK ( RemoteFilesDialog, TreeSelectHdl, FolderTree *, pBox )
OUString* sURL = static_cast< OUString* >( pBox->GetHdlEntry()->GetUserData() );
if( sURL )
+ {
OpenURL( *sURL );
+ m_pFileView->GrabFocus();
+ }
return 1;
}
More information about the Libreoffice-commits
mailing list