Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c832aae7
Kaydet (Commit)
c832aae7
authored
Agu 22, 2017
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
updater: get the updater GUI working on Linux
Change-Id: I3e7edb5319ab2e2ec316204b917a7e29c1791b5b
üst
ca089c7e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
7 deletions
+14
-7
Repository.mk
Repository.mk
+2
-3
Executable_updater.mk
onlineupdate/Executable_updater.mk
+0
-1
Module_onlineupdate.mk
onlineupdate/Module_onlineupdate.mk
+1
-1
progressui_gtk.cxx
onlineupdate/source/update/updater/progressui_gtk.cxx
+5
-1
test_dialog.cxx
onlineupdate/workben/test_dialog.cxx
+6
-1
No files found.
Repository.mk
Dosyayı görüntüle @
c832aae7
...
...
@@ -57,9 +57,8 @@ $(eval $(call gb_Helper_register_executables,NONE, \
svg2odf \
svidl \
$(if $(ENABLE_ONLINE_UPDATE_MAR),\
$(if $(filter WNT,$(OS)), \
test_updater_dialog \
)) \
test_updater_dialog \
) \
treex \
ulfex \
unoidl-read \
...
...
onlineupdate/Executable_updater.mk
Dosyayı görüntüle @
c832aae7
...
...
@@ -80,7 +80,6 @@ $(eval $(call gb_Executable_add_exception_objects,updater,\
onlineupdate/source/update/updater/archivereader \
onlineupdate/source/update/updater/bspatch \
onlineupdate/source/update/updater/progressui_gtk \
onlineupdate/source/update/updater/progressui_null \
onlineupdate/source/update/updater/updater \
$(if $(filter WNT,$(OS)),\
onlineupdate/source/update/updater/loaddlls \
...
...
onlineupdate/Module_onlineupdate.mk
Dosyayı görüntüle @
c832aae7
...
...
@@ -17,8 +17,8 @@ $(eval $(call gb_Module_add_targets,onlineupdate,\
StaticLibrary_updatehelper \
$(if $(filter WNT,$(OS)),\
Executable_update_service \
Executable_test_updater_dialog \
WinResTarget_updater )\
Executable_test_updater_dialog \
Executable_mar \
Executable_updater \
Executable_mbsdiff \
...
...
onlineupdate/source/update/updater/progressui_gtk.cxx
Dosyayı görüntüle @
c832aae7
...
...
@@ -11,6 +11,7 @@
#include "progressui.h"
#include "readstrings.h"
#include "errors.h"
#include <string.h>
#define TIMER_INTERVAL 100
...
...
@@ -76,7 +77,10 @@ ShowProgressUI()
StringTable
strings
;
if
(
ReadStrings
(
ini_path
,
&
strings
)
!=
OK
)
return
-
1
;
{
strcpy
(
strings
.
title
,
"LibreOffice Updater"
);
strcpy
(
strings
.
info
,
"This program is updating your LibreOffice installation."
);
}
sWin
=
gtk_window_new
(
GTK_WINDOW_TOPLEVEL
);
if
(
!
sWin
)
...
...
onlineupdate/workben/test_dialog.cxx
Dosyayı görüntüle @
c832aae7
#include "progressui.h"
#if defined(_WIN32)
#include "progressui_win.cxx"
#else
#include "progressui_gtk.cxx"
#endif
#include <thread>
#include <chrono>
...
...
@@ -15,7 +20,7 @@ void func()
QuitProgressUI
();
}
int
wmain
(
int
argc
,
wchar_t
**
argv
)
int
NS_main
(
int
argc
,
NS_tchar
**
argv
)
{
InitProgressUI
(
&
argc
,
&
argv
);
std
::
thread
a
(
func
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment