select ring id text on double click

This add a visual feedback to show the ring id has been
copied to the clipboard

Change-Id: I83ea11e8b524d83d3b2183c1a5b62bac4401c7fe
Tuleap: #715
1 file changed
tree: b3739add5840e200113861792432761c22eeb9d1
  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. accountserializationadapter.cpp
  15. accountserializationadapter.h
  16. accountstatedelegate.cpp
  17. accountstatedelegate.h
  18. callutilsdialog.cpp
  19. callutilsdialog.h
  20. callutilsdialog.ui
  21. callwidget.cpp
  22. callwidget.h
  23. callwidget.ui
  24. combar.cpp
  25. combar.h
  26. combar.ui
  27. configurationwidget.cpp
  28. configurationwidget.h
  29. configurationwidget.ui
  30. contactdelegate.cpp
  31. contactdelegate.h
  32. contactdialog.ui
  33. contactmethodpicker.cpp
  34. contactmethodpicker.h
  35. contactmethodpicker.ui
  36. contactpicker.cpp
  37. contactpicker.h
  38. contactpicker.ui
  39. globalsystemtray.cpp
  40. globalsystemtray.h
  41. historydelegate.cpp
  42. historydelegate.h
  43. ico.rc
  44. idlabel.cpp
  45. idlabel.h
  46. imdelegate.cpp
  47. imdelegate.h
  48. instantmessagingwidget.cpp
  49. instantmessagingwidget.h
  50. instantmessagingwidget.ui
  51. License.rtf
  52. main.cpp
  53. mainwindow.cpp
  54. mainwindow.h
  55. mainwindow.ui
  56. navstack.cpp
  57. navstack.h
  58. navwidget.cpp
  59. navwidget.h
  60. pathpassworddialog.cpp
  61. pathpassworddialog.h
  62. pathpassworddialog.ui
  63. photoboothdialog.cpp
  64. photoboothdialog.h
  65. photoboothdialog.ui
  66. pixbufmanipulator.cpp
  67. pixbufmanipulator.h
  68. qualitydialog.cpp
  69. qualitydialog.h
  70. qualitydialog.ui
  71. README.md
  72. ressources.qrc
  73. ring.nsi
  74. ringbutton.cpp
  75. ringbutton.h
  76. ringbutton.ui
  77. ringcontactlineedit.cpp
  78. ringcontactlineedit.h
  79. ringthemeutils.h
  80. RingWinClient.pro
  81. selectareadialog.cpp
  82. selectareadialog.h
  83. settingskey.h
  84. shmclient.cpp
  85. shmclient.h
  86. smartlist.cpp
  87. smartlist.h
  88. smartlistdelegate.cpp
  89. smartlistdelegate.h
  90. stylesheet.css
  91. update-translations.py
  92. utils.cpp
  93. utils.h
  94. videooverlay.cpp
  95. videooverlay.h
  96. videooverlay.ui
  97. videoview.cpp
  98. videoview.h
  99. videoview.ui
  100. videowidget.cpp
  101. videowidget.h
  102. windowscontactbackend.cpp
  103. windowscontactbackend.h
  104. wizarddialog.cpp
  105. wizarddialog.h
  106. wizarddialog.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