call: use new lrc models for in-call chat

Change-Id: I1980b6bb8a226d7170c26f9eff55d4541532835f
Reviewed-by: Isa Nanic <isa.nanic@savoirfairelinux.com>
5 files changed
tree: 3326e4c009766c910e864b41e6e43039af4c210b
  1. .tx/
  2. docker/
  3. images/
  4. translations/
  5. .gitignore
  6. .gitmodules
  7. .gitreview
  8. aboutdialog.cpp
  9. aboutdialog.h
  10. aboutdialog.ui
  11. accountdetails.cpp
  12. accountdetails.h
  13. accountdetails.ui
  14. accountitemdelegate.cpp
  15. accountitemdelegate.h
  16. accountlistmodel.cpp
  17. accountlistmodel.h
  18. accountserializationadapter.cpp
  19. accountserializationadapter.h
  20. accountstatedelegate.cpp
  21. accountstatedelegate.h
  22. bannedcontactswidget.cpp
  23. bannedcontactswidget.h
  24. bannedcontactswidget.ui
  25. callutilsdialog.cpp
  26. callutilsdialog.h
  27. callutilsdialog.ui
  28. callwidget.cpp
  29. callwidget.h
  30. callwidget.ui
  31. configurationwidget.cpp
  32. configurationwidget.h
  33. configurationwidget.ui
  34. contactdialog.ui
  35. contactpicker.cpp
  36. contactpicker.h
  37. contactpicker.ui
  38. contactrequestwidget.cpp
  39. contactrequestwidget.h
  40. contactrequestwidget.ui
  41. conversationitemdelegate.cpp
  42. conversationitemdelegate.h
  43. conversationsfilterwidget.cpp
  44. conversationsfilterwidget.h
  45. currentaccountcombobox.cpp
  46. currentaccountcombobox.h
  47. deleteaccountdialog.cpp
  48. deleteaccountdialog.h
  49. deleteaccountdialog.ui
  50. fetch-qrencodewin32.bat
  51. fetch-winsparkle.bat
  52. globalsystemtray.cpp
  53. globalsystemtray.h
  54. ico.rc
  55. idlabel.cpp
  56. idlabel.h
  57. imdelegate.cpp
  58. imdelegate.h
  59. instantmessagingwidget.cpp
  60. instantmessagingwidget.h
  61. instantmessagingwidget.ui
  62. invitebuttonswidget.cpp
  63. invitebuttonswidget.h
  64. invitebuttonswidget.ui
  65. License.rtf
  66. lrcinstance.h
  67. main.cpp
  68. mainwindow.cpp
  69. mainwindow.h
  70. mainwindow.ui
  71. messagemodel.cpp
  72. messagemodel.h
  73. navwidget.cpp
  74. navwidget.h
  75. photoboothdialog.cpp
  76. photoboothdialog.h
  77. photoboothdialog.ui
  78. photoboothwidget.cpp
  79. photoboothwidget.h
  80. photoboothwidget.ui
  81. pixbufmanipulator.cpp
  82. pixbufmanipulator.h
  83. qualitydialog.cpp
  84. qualitydialog.h
  85. qualitydialog.ui
  86. quickactcontactrequestwidget.ui
  87. README.md
  88. ressources.qrc
  89. ring-client-windows.sln
  90. ring-client-windows.vcxproj
  91. ring-client-windows.vcxproj.filters
  92. ring.nsi
  93. ringbutton.cpp
  94. ringbutton.h
  95. ringbutton.ui
  96. ringcontactlineedit.cpp
  97. ringcontactlineedit.h
  98. ringthemeutils.h
  99. RingWinClient.pro
  100. selectareadialog.cpp
  101. selectareadialog.h
  102. sendcontactrequestwidget.cpp
  103. sendcontactrequestwidget.h
  104. sendcontactrequestwidget.ui
  105. settingskey.h
  106. shmclient.cpp
  107. shmclient.h
  108. smartlistmodel.cpp
  109. smartlistmodel.h
  110. smartlistselectorbuttonnotifier.cpp
  111. smartlistselectorbuttonnotifier.h
  112. smartlistview.cpp
  113. smartlistview.h
  114. stylesheet.css
  115. update-translations.py
  116. utils.cpp
  117. utils.h
  118. videooverlay.cpp
  119. videooverlay.h
  120. videooverlay.ui
  121. videoview.cpp
  122. videoview.h
  123. videoview.ui
  124. videowidget.cpp
  125. videowidget.h
  126. windowscontactbackend.cpp
  127. windowscontactbackend.h
  128. wizarddialog.cpp
  129. wizarddialog.h
  130. wizarddialog.ui
  131. wizardwidget.cpp
  132. wizardwidget.h
  133. 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