gitextract_qtdfnj81/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── Authentications/ │ ├── basicauthentication.cpp │ ├── basicauthentication.h │ ├── frequestauthentication.cpp │ ├── frequestauthentication.h │ ├── requestauthentication.cpp │ └── requestauthentication.h ├── FRequest.pro ├── HttpRequests/ │ ├── deletehttprequest.cpp │ ├── deletehttprequest.h │ ├── gethttprequest.cpp │ ├── gethttprequest.h │ ├── headhttprequest.cpp │ ├── headhttprequest.h │ ├── httprequest.cpp │ ├── httprequest.h │ ├── httprequestwithmultipart.cpp │ ├── httprequestwithmultipart.h │ ├── optionshttprequest.cpp │ ├── optionshttprequest.h │ ├── patchhttprequest.cpp │ ├── patchhttprequest.h │ ├── posthttprequest.cpp │ ├── posthttprequest.h │ ├── puthttprequest.cpp │ ├── puthttprequest.h │ ├── tracehttprequest.cpp │ └── tracehttprequest.h ├── LICENSE ├── LinuxAppImageDeployment/ │ └── frequest.desktop ├── README.md ├── Resources/ │ ├── frequest_icon.icns │ ├── icon_resource.rc │ ├── macos_resources.qrc │ ├── plus_file.pdn │ └── resources.qrc ├── SyntaxHighlighters/ │ ├── frequestjsonhighlighter.cpp │ ├── frequestjsonhighlighter.h │ ├── frequestxmlhighlighter.cpp │ └── frequestxmlhighlighter.h ├── Widgets/ │ ├── frequesttreewidget.cpp │ ├── frequesttreewidget.h │ ├── frequesttreewidgetitem.cpp │ ├── frequesttreewidgetitem.h │ ├── frequesttreewidgetprojectitem.cpp │ ├── frequesttreewidgetprojectitem.h │ ├── frequesttreewidgetrequestitem.cpp │ └── frequesttreewidgetrequestitem.h ├── XmlParsers/ │ ├── configfilefrequest.cpp │ ├── configfilefrequest.h │ ├── projectfilefrequest.cpp │ └── projectfilefrequest.h ├── about.cpp ├── about.h ├── about.ui ├── credits.txt ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── preferences.cpp ├── preferences.h ├── preferences.ui ├── projectproperties.cpp ├── projectproperties.h ├── projectproperties.ui ├── proxysetup.cpp ├── proxysetup.h ├── readme.txt ├── updatechecker.cpp ├── updatechecker.h ├── utilfrequest.cpp ├── utilfrequest.h └── utilglobalvars.h