嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
远程桌面QT实现
如果这个项目让你有所收获,记得 Star 关注哦,这对我是非常不错的鼓励与支持。
QtyDesk 是QT实现的远程桌面软件,作者会不断优化,记得Star关注哦
.
├── 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