remove unused widgets/classes

Change-Id: I1ebc1eab5139365795ceb2c654d938571337f910
7 files changed
tree: fd30357e105d160ee4bdffdeae91d26c6c2f6665
  1. .tx/
  2. docker/
  3. images/
  4. ringtones/
  5. translations/
  6. web/
  7. .gitignore
  8. .gitmodules
  9. .gitreview
  10. aboutdialog.cpp
  11. aboutdialog.h
  12. aboutdialog.ui
  13. accountitemdelegate.cpp
  14. accountitemdelegate.h
  15. accountlistmodel.cpp
  16. accountlistmodel.h
  17. advancedsettingswidget.cpp
  18. advancedsettingswidget.h
  19. advancedsettingswidget.ui
  20. animatedoverlay.ui
  21. animationhelpers.cpp
  22. animationhelpers.h
  23. avatargraphicsview.cpp
  24. avatargraphicsview.h
  25. bannedcontactswidget.cpp
  26. bannedcontactswidget.h
  27. bannedcontactswidget.ui
  28. bannedlistmodel.cpp
  29. bannedlistmodel.h
  30. build-client.bat
  31. callwidget.cpp
  32. callwidget.h
  33. callwidget.ui
  34. contactdialog.ui
  35. conversationitemdelegate.cpp
  36. conversationitemdelegate.h
  37. conversationsfilterwidget.cpp
  38. conversationsfilterwidget.h
  39. copy-runtime-files.ps1
  40. currentaccountcombobox.cpp
  41. currentaccountcombobox.h
  42. deleteaccountdialog.cpp
  43. deleteaccountdialog.h
  44. deleteaccountdialog.ui
  45. deviceeditwidget.ui
  46. fetch-deps.bat
  47. globalsystemtray.cpp
  48. globalsystemtray.h
  49. ico.rc
  50. idlabel.cpp
  51. idlabel.h
  52. invitebuttonswidget.cpp
  53. invitebuttonswidget.h
  54. invitebuttonswidget.ui
  55. License.rtf
  56. linkdevwidget.cpp
  57. linkdevwidget.h
  58. linkdevwidget.ui
  59. linkify.js
  60. lrcinstance.h
  61. main.cpp
  62. mainwindow.cpp
  63. mainwindow.h
  64. mainwindow.ui
  65. messagewebpage.cpp
  66. messagewebpage.h
  67. messagewebview.cpp
  68. messagewebview.h
  69. navwidget.cpp
  70. navwidget.h
  71. passworddialog.cpp
  72. passworddialog.h
  73. passworddialog.ui
  74. photoboothdialog.cpp
  75. photoboothdialog.h
  76. photoboothdialog.ui
  77. photoboothwidget.cpp
  78. photoboothwidget.h
  79. photoboothwidget.ui
  80. pixbufmanipulator.cpp
  81. pixbufmanipulator.h
  82. qrencode-win32.patch
  83. README.md
  84. regnamedialog.cpp
  85. regnamedialog.h
  86. regnamedialog.ui
  87. ressources.qrc
  88. ring-client-windows.sln
  89. ring-client-windows.vcxproj
  90. ring-client-windows.vcxproj.filters
  91. ring.nsi
  92. ringbutton.cpp
  93. ringbutton.h
  94. ringbutton.ui
  95. ringcontactlineedit.cpp
  96. ringcontactlineedit.h
  97. ringthemeutils.h
  98. RingWinClient.pro
  99. selectareadialog.cpp
  100. selectareadialog.h
  101. setavatardialog.cpp
  102. setavatardialog.h
  103. setavatardialog.ui
  104. settingsitemwidget.cpp
  105. settingsitemwidget.h
  106. settingskey.h
  107. settingswidget.cpp
  108. settingswidget.h
  109. settingswidget.ui
  110. shmclient.cpp
  111. shmclient.h
  112. smartlistmodel.cpp
  113. smartlistmodel.h
  114. smartlistselectorbuttonnotifier.cpp
  115. smartlistselectorbuttonnotifier.h
  116. smartlistview.cpp
  117. smartlistview.h
  118. stylesheet.css
  119. touch_res.bat
  120. update-translations.py
  121. utils.cpp
  122. utils.h
  123. version.h
  124. videooverlay.cpp
  125. videooverlay.h
  126. videooverlay.ui
  127. videoview.cpp
  128. videoview.h
  129. videoview.ui
  130. videowidget.cpp
  131. videowidget.h
  132. webchathelpers.cpp
  133. webchathelpers.h
  134. windowscontactbackend.cpp
  135. windowscontactbackend.h
  136. winsparkle.patch
  137. wizarddialog.cpp
  138. wizarddialog.h
  139. wizarddialog.ui
  140. wizardwidget.cpp
  141. wizardwidget.h
  142. wizardwidget.ui
README.md

Windows client for Ring

For more information about the ring project, see the following:

Requirements

  • Ring client library and Ring daemon
  • Mingw-w64 build environment
  • Qt5 (we link against Qt5Core, Qt5Widgets, Qt5Gui) built with Mingw
  • Qt5 Svg, Qt5 ImageFormats & Qt5 WinExtras built with Mingw

Get the source code

  • git clone https://gerrit-ring.savoirfairelinux.com/ring-client-windows

Build instructions

USE THE QMAKE OF Qt BUILT WITH MINGW (e.g. /usr/bin/[i686 | x86_64]-w64-mingw32-qmake-qt5)

cd ring-client-windows
mkdir build && cd build
export QTDIR=<path to mingw qt> (e.g. /usr/[i686 | x86_64]-w64-mingw32/lib/qt)
git submodule init && git submodule update
cd libqrencode
./autogen.sh && ./configure --host=[i686 | x86_64]-w64-mingw32 --prefix=<Install dir of Ring and LRC>
make
make install
cd ..
qmake ../RingWinClient.pro -r -spec win32-g++ RING=<Install dir of Ring and LRC> [BUILD=Debug]
make
make install

You will find all files in ./release directory.

#Auto update

If you want to enable auto-update

  • Build winsparkle In the client directory after having initialized the submodule
    cd winsparkle
    mkdir build && cd build
    cmake -DCMAKE_TOOLCHAIN_FILE=<LRC Directory>/cmake/winBuild.cmake -DCMAKE_INSTALL_PREFIX=Install dir of Ring and LRC> ../cmake",
    make
    make install
    
  • Compile the client with ENABLE_AUTOUPDATE=True

Debugging

Compile the client with 'BUILD=Debug' and libRingClient with '-DCMAKE_BUILD_TYPE=Debug'

Packaging

cd build/release
makensis ring.nsi