在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例桌面应用界面/GUI → 远程桌面QT实现

远程桌面QT实现

桌面应用界面/GUI

下载此实例
  • 开发语言:C/C++
  • 实例大小:18.70M
  • 下载次数:36
  • 浏览次数:242
  • 发布时间:2023-03-31
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:mathmwm
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 远程桌面 实现 Qt 桌面 远程

实例介绍

【实例简介】远程桌面QT实现


如果这个项目让你有所收获,记得 Star 关注哦,这对我是非常不错的鼓励与支持。

QtyDesk 是QT实现的远程桌面软件,作者会不断优化,记得Star关注哦


【实例截图】

from clipboard

【核心代码】

.
├── QtyDesk-master
│   ├── LICENSE
│   ├── QtyDesk.pro
│   ├── QtyDesk.pro.user
│   ├── README.md
│   ├── Windows一些版本需要
│   │   ├── readme.txt
│   │   └── vcredist_x86.exe
│   ├── activewindow.cpp
│   ├── activewindow.h
│   ├── activewindow.ui
│   ├── common
│   │   ├── deviceinfo.cpp
│   │   ├── deviceinfo.h
│   │   ├── log4j.cpp
│   │   └── log4j.h
│   ├── component
│   │   ├── graberclass.cpp
│   │   ├── graberclass.h
│   │   ├── inputsimulator.cpp
│   │   └── inputsimulator.h
│   ├── libs
│   │   ├── oenssl
│   │   │   ├── libeay32.dll
│   │   │   └── ssleay32.dll
│   │   └── protobuf
│   │       ├── include
│   │       │   └── google
│   │       │       └── protobuf
│   │       │           ├── any.h
│   │       │           ├── any.pb.h
│   │       │           ├── api.pb.h
│   │       │           ├── arena.h
│   │       │           ├── arena_impl.h
│   │       │           ├── arena_test_util.h
│   │       │           ├── arenastring.h
│   │       │           ├── compiler
│   │       │           │   ├── annotation_test_util.h
│   │       │           │   ├── code_generator.h
│   │       │           │   ├── command_line_interface.h
│   │       │           │   ├── cpp
│   │       │           │   │   ├── cpp_enum.h
│   │       │           │   │   ├── cpp_enum_field.h
│   │       │           │   │   ├── cpp_extension.h
│   │       │           │   │   ├── cpp_field.h
│   │       │           │   │   ├── cpp_file.h
│   │       │           │   │   ├── cpp_generator.h
│   │       │           │   │   ├── cpp_helpers.h
│   │       │           │   │   ├── cpp_map_field.h
│   │       │           │   │   ├── cpp_message.h
│   │       │           │   │   ├── cpp_message_field.h
│   │       │           │   │   ├── cpp_message_layout_helper.h
│   │       │           │   │   ├── cpp_names.h
│   │       │           │   │   ├── cpp_options.h
│   │       │           │   │   ├── cpp_padding_optimizer.h
│   │       │           │   │   ├── cpp_primitive_field.h
│   │       │           │   │   ├── cpp_service.h
│   │       │           │   │   ├── cpp_string_field.h
│   │       │           │   │   ├── cpp_unittest.h
│   │       │           │   │   └── cpp_unittest.inc
│   │       │           │   ├── csharp
│   │       │           │   │   ├── csharp_doc_comment.h
│   │       │           │   │   ├── csharp_enum.h
│   │       │           │   │   ├── csharp_enum_field.h
│   │       │           │   │   ├── csharp_field_base.h
│   │       │           │   │   ├── csharp_generator.h
│   │       │           │   │   ├── csharp_helpers.h
│   │       │           │   │   ├── csharp_map_field.h
│   │       │           │   │   ├── csharp_message.h
│   │       │           │   │   ├── csharp_message_field.h
│   │       │           │   │   ├── csharp_names.h
│   │       │           │   │   ├── csharp_options.h
│   │       │           │   │   ├── csharp_primitive_field.h
│   │       │           │   │   ├── csharp_reflection_class.h
│   │       │           │   │   ├── csharp_repeated_enum_field.h
│   │       │           │   │   ├── csharp_repeated_message_field.h
│   │       │           │   │   ├── csharp_repeated_primitive_field.h
│   │       │           │   │   ├── csharp_source_generator_base.h
│   │       │           │   │   └── csharp_wrapper_field.h
│   │       │           │   ├── importer.h
│   │       │           │   ├── java
│   │       │           │   │   ├── java_context.h
│   │       │           │   │   ├── java_doc_comment.h
│   │       │           │   │   ├── java_enum.h
│   │       │           │   │   ├── java_enum_field.h
│   │       │           │   │   ├── java_enum_field_lite.h
│   │       │           │   │   ├── java_enum_lite.h
│   │       │           │   │   ├── java_extension.h
│   │       │           │   │   ├── java_extension_lite.h
│   │       │           │   │   ├── java_field.h
│   │       │           │   │   ├── java_file.h
│   │       │           │   │   ├── java_generator.h
│   │       │           │   │   ├── java_generator_factory.h
│   │       │           │   │   ├── java_helpers.h
│   │       │           │   │   ├── java_map_field.h
│   │       │           │   │   ├── java_map_field_lite.h
│   │       │           │   │   ├── java_message.h
│   │       │           │   │   ├── java_message_builder.h
│   │       │           │   │   ├── java_message_builder_lite.h
│   │       │           │   │   ├── java_message_field.h
│   │       │           │   │   ├── java_message_field_lite.h
│   │       │           │   │   ├── java_message_lite.h
│   │       │           │   │   ├── java_name_resolver.h
│   │       │           │   │   ├── java_names.h
│   │       │           │   │   ├── java_options.h
│   │       │           │   │   ├── java_primitive_field.h
│   │       │           │   │   ├── java_primitive_field_lite.h
│   │       │           │   │   ├── java_service.h
│   │       │           │   │   ├── java_shared_code_generator.h
│   │       │           │   │   ├── java_string_field.h
│   │       │           │   │   └── java_string_field_lite.h
│   │       │           │   ├── js
│   │       │           │   │   ├── js_generator.h
│   │       │           │   │   └── well_known_types_embed.h
│   │       │           │   ├── mock_code_generator.h
│   │       │           │   ├── objectivec
│   │       │           │   │   ├── objectivec_enum.h
│   │       │           │   │   ├── objectivec_enum_field.h
│   │       │           │   │   ├── objectivec_extension.h
│   │       │           │   │   ├── objectivec_field.h
│   │       │           │   │   ├── objectivec_file.h
│   │       │           │   │   ├── objectivec_generator.h
│   │       │           │   │   ├── objectivec_helpers.h
│   │       │           │   │   ├── objectivec_map_field.h
│   │       │           │   │   ├── objectivec_message.h
│   │       │           │   │   ├── objectivec_message_field.h
│   │       │           │   │   ├── objectivec_nsobject_methods.h
│   │       │           │   │   ├── objectivec_oneof.h
│   │       │           │   │   └── objectivec_primitive_field.h
│   │       │           │   ├── package_info.h
│   │       │           │   ├── parser.h
│   │       │           │   ├── php
│   │       │           │   │   └── php_generator.h
│   │       │           │   ├── plugin.h
│   │       │           │   ├── plugin.pb.h
│   │       │           │   ├── python
│   │       │           │   │   └── python_generator.h
│   │       │           │   ├── ruby
│   │       │           │   │   ├── ruby_generated_code_pb.rb
│   │       │           │   │   ├── ruby_generated_code_proto2_pb.rb
│   │       │           │   │   ├── ruby_generated_pkg_explicit_legacy_pb.rb
│   │       │           │   │   ├── ruby_generated_pkg_explicit_pb.rb
│   │       │           │   │   ├── ruby_generated_pkg_implicit_pb.rb
│   │       │           │   │   └── ruby_generator.h
│   │       │           │   ├── scc.h
│   │       │           │   ├── subprocess.h
│   │       │           │   ├── zip_output_unittest.sh
│   │       │           │   └── zip_writer.h
│   │       │           ├── descriptor.h
│   │       │           ├── descriptor.pb.h
│   │       │           ├── descriptor_database.h
│   │       │           ├── duration.pb.h
│   │       │           ├── dynamic_message.h
│   │       │           ├── empty.pb.h
│   │       │           ├── extension_set.h
│   │       │           ├── extension_set_inl.h
│   │       │           ├── field_mask.pb.h
│   │       │           ├── generated_enum_reflection.h
│   │       │           ├── generated_enum_util.h
│   │       │           ├── generated_message_reflection.h
│   │       │           ├── generated_message_table_driven.h
│   │       │           ├── generated_message_table_driven_lite.h
│   │       │           ├── generated_message_util.h
│   │       │           ├── has_bits.h
│   │       │           ├── implicit_weak_message.h
│   │       │           ├── io
│   │       │           │   ├── coded_stream.h
│   │       │           │   ├── gzip_stream.h
│   │       │           │   ├── gzip_stream_unittest.sh
│   │       │           │   ├── io_win32.h
│   │       │           │   ├── package_info.h
│   │       │           │   ├── printer.h
│   │       │           │   ├── strtod.h
│   │       │           │   ├── tokenizer.h
│   │       │           │   ├── zero_copy_stream.h
│   │       │           │   ├── zero_copy_stream_impl.h
│   │       │           │   └── zero_copy_stream_impl_lite.h
│   │       │           ├── map.h
│   │       │           ├── map_entry.h
│   │       │           ├── map_entry_lite.h
│   │       │           ├── map_field.h
│   │       │           ├── map_field_inl.h
│   │       │           ├── map_field_lite.h
│   │       │           ├── map_lite_test_util.h
│   │       │           ├── map_test_util.h
│   │       │           ├── map_test_util.inc
│   │       │           ├── map_test_util_impl.h
│   │       │           ├── map_type_handler.h
│   │       │           ├── message.h
│   │       │           ├── message_lite.h
│   │       │           ├── message_unittest.inc
│   │       │           ├── metadata.h
│   │       │           ├── metadata_lite.h
│   │       │           ├── package_info.h
│   │       │           ├── parse_context.h
│   │       │           ├── port.h
│   │       │           ├── port_def.inc
│   │       │           ├── port_undef.inc
│   │       │           ├── proto3_lite_unittest.inc
│   │       │           ├── reflection.h
│   │       │           ├── reflection_internal.h
│   │       │           ├── reflection_ops.h
│   │       │           ├── repeated_field.h
│   │       │           ├── service.h
│   │       │           ├── source_context.pb.h
│   │       │           ├── struct.pb.h
│   │       │           ├── stubs
│   │       │           │   ├── bytestream.h
│   │       │           │   ├── callback.h
│   │       │           │   ├── casts.h
│   │       │           │   ├── common.h
│   │       │           │   ├── hash.h
│   │       │           │   ├── int128.h
│   │       │           │   ├── logging.h
│   │       │           │   ├── macros.h
│   │       │           │   ├── map_util.h
│   │       │           │   ├── mathutil.h
│   │       │           │   ├── mutex.h
│   │       │           │   ├── once.h
│   │       │           │   ├── platform_macros.h
│   │       │           │   ├── port.h
│   │       │           │   ├── status.h
│   │       │           │   ├── status_macros.h
│   │       │           │   ├── statusor.h
│   │       │           │   ├── stl_util.h
│   │       │           │   ├── stringpiece.h
│   │       │           │   ├── stringprintf.h
│   │       │           │   ├── strutil.h
│   │       │           │   ├── substitute.h
│   │       │           │   ├── template_util.h
│   │       │           │   └── time.h
│   │       │           ├── test_util.h
│   │       │           ├── test_util.inc
│   │       │           ├── test_util2.h
│   │       │           ├── test_util_lite.h
│   │       │           ├── testdata
│   │       │           │   ├── bad_utf8_string
│   │       │           │   ├── golden_message
│   │       │           │   ├── golden_message_maps
│   │       │           │   ├── golden_message_oneof_implemented
│   │       │           │   ├── golden_message_proto3
│   │       │           │   ├── golden_packed_fields_message
│   │       │           │   ├── map_test_data.txt
│   │       │           │   ├── text_format_unittest_data.txt
│   │       │           │   ├── text_format_unittest_data_oneof_implemented.txt
│   │       │           │   ├── text_format_unittest_data_pointy.txt
│   │       │           │   ├── text_format_unittest_data_pointy_oneof.txt
│   │       │           │   ├── text_format_unittest_extensions_data.txt
│   │       │           │   └── text_format_unittest_extensions_data_pointy.txt
│   │       │           ├── testing
│   │       │           │   ├── file.h
│   │       │           │   └── googletest.h
│   │       │           ├── text_format.h
│   │       │           ├── timestamp.pb.h
│   │       │           ├── type.pb.h
│   │       │           ├── unknown_field_set.h
│   │       │           ├── util
│   │       │           │   ├── delimited_message_util.h
│   │       │           │   ├── field_comparator.h
│   │       │           │   ├── field_mask_util.h
│   │       │           │   ├── internal
│   │       │           │   │   ├── constants.h
│   │       │           │   │   ├── datapiece.h
│   │       │           │   │   ├── default_value_objectwriter.h
│   │       │           │   │   ├── error_listener.h
│   │       │           │   │   ├── expecting_objectwriter.h
│   │       │           │   │   ├── field_mask_utility.h
│   │       │           │   │   ├── json_escaping.h
│   │       │           │   │   ├── json_objectwriter.h
│   │       │           │   │   ├── json_stream_parser.h
│   │       │           │   │   ├── location_tracker.h
│   │       │           │   │   ├── mock_error_listener.h
│   │       │           │   │   ├── object_location_tracker.h
│   │       │           │   │   ├── object_source.h
│   │       │           │   │   ├── object_writer.h
│   │       │           │   │   ├── proto_writer.h
│   │       │           │   │   ├── protostream_objectsource.h
│   │       │           │   │   ├── protostream_objectwriter.h
│   │       │           │   │   ├── structured_objectwriter.h
│   │       │           │   │   ├── type_info.h
│   │       │           │   │   ├── type_info_test_helper.h
│   │       │           │   │   └── utility.h
│   │       │           │   ├── json_util.h
│   │       │           │   ├── message_differencer.h
│   │       │           │   ├── package_info.h
│   │       │           │   ├── time_util.h
│   │       │           │   ├── type_resolver.h
│   │       │           │   └── type_resolver_util.h
│   │       │           ├── wire_format.h
│   │       │           ├── wire_format_lite.h
│   │       │           └── wrappers.pb.h
│   │       └── lib
│   │           ├── libprotobuf.dll
│   │           └── libprotobuf.dll.a
│   ├── machine
│   │   ├── deviceinfo.cpp
│   │   └── deviceinfo.h
│   ├── main.cpp
│   ├── mainwindow.cpp
│   ├── mainwindow.h
│   ├── mainwindow.ui
│   ├── net
│   │   ├── activehandler.cpp
│   │   ├── activehandler.h
│   │   ├── passivehandler.cpp
│   │   ├── passivehandler.h
│   │   ├── sockethandler.cpp
│   │   └── sockethandler.h
│   ├── proto
│   │   ├── Exchange.pb.cc
│   │   └── Exchange.pb.h
│   ├── resources
│   │   ├── images
│   │   │   ├── error.png
│   │   │   ├── eye.png
│   │   │   ├── favicon-16x16.png
│   │   │   ├── favicon-32x32.png
│   │   │   ├── favicon.ico
│   │   │   ├── key.png
│   │   │   ├── logo.ico
│   │   │   ├── more.png
│   │   │   ├── pen.png
│   │   │   ├── tv.png
│   │   │   └── xun.png
│   │   ├── qsss
│   │   │   ├── menu.qss
│   │   │   └── style1.css
│   │   └── skin.qrc
│   └── ui
│       ├── button
│       │   ├── btnpasssetting.cpp
│       │   ├── btnpasssetting.h
│       │   ├── btnsettings.cpp
│       │   ├── btnsettings.h
│       │   ├── btnshowpasswd.cpp
│       │   └── btnshowpasswd.h
│       └── dialog
│           ├── dlgchangepasswd.cpp
│           ├── dlgchangepasswd.h
│           ├── dlgchangepasswd.ui
│           ├── dlgconnectmessage.cpp
│           ├── dlgconnectmessage.h
│           ├── dlgconnectmessage.ui
│           ├── movedialog.cpp
│           └── movedialog.h
└── 远程桌面QT实现_QtyDesk-master.zip

35 directories, 311 files


实例下载地址

远程桌面QT实现

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警