Wiki Editing Hints/ar: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Partial cleanup)
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:


{{LangSwitch}}
{{LangSwitch}}
= كيفية استخدام الموسوعة =


== البداية ==
== البداية ==
Line 30: Line 28:
'''لغة الصفحة''' لغة1 لغة2 .. جنبا إلى جنب وبالروابط الموافقة.
'''لغة الصفحة''' لغة1 لغة2 .. جنبا إلى جنب وبالروابط الموافقة.
على سبيل المثال في هذه الصفحة (أزل الفراغات بين أقواس المربع "[[")
على سبيل المثال في هذه الصفحة (أزل الفراغات بين أقواس المربع "[[")
  <code>'''English''' [ [WikiHilfe|Deutsch]] [ [WikiPomoc|Polski]]<code>
  <code>'''English''' [ [WikiHilfe|Deutsch]] [ [WikiPomoc|Polski]]</code>


== التعاون ==
== التعاون ==
Line 48: Line 46:
ستجد في شريط الأدوات مؤشرة وهي ذات الرمز الفاصل بين اسم اي بريد الكتروني ومجاله ,يؤدي وضع النص البرمجي بين اشارتين إلى جعله ملونا كما يلي:
ستجد في شريط الأدوات مؤشرة وهي ذات الرمز الفاصل بين اسم اي بريد الكتروني ومجاله ,يؤدي وضع النص البرمجي بين اشارتين إلى جعله ملونا كما يلي:


</code>
<code>
#include <QtGui>
#include <QtGui>
#include "window.h"
#include "window.h"
Line 61: Line 59:
return app.exec();
return app.exec();
}
}
<code>
</code>


Qt classes are of course supported.
Qt classes are of course supported.

Latest revision as of 21:51, 28 March 2016

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

البداية

  1. إن كان لديك اي معلومة عن كيوتي ترغب بمشاركتها,عليك بالموسوعة فهي المكان المناسب.ولكن اقتصر على المعلومات المتعلقة فقط بكيوتي
  2. تأكد من فضلك ان الصفحة التي تريد اضافتها غير موجودة. استخدم صندوق البحث في اعلى يمين الموسوعة wiki box لهذا الغرض.
  3. سترى إن كان احدهم قد اضاف نفس المقالة في نتائج البحث
  4. بامكانك تحرير محتوى أغلب الصفحات. ستساعدك صفحة WikiSyntax في معرفة التأشيرات القواعدية
  5. If there is no such page you can create one by clicking "Create new page".
  6. Use spaces or underscores for titles in both articles and categories. — see the related thread on the forum in a forum poll where can vote.
  7. Don't pollute the history of a page by doing markup tests, use the Playground instead.

كيف تحرر صفحة

The editor provides you with the most common functions collected in a kitchen sink. That should get you quite somewhere.

If you prefer to write wiki code directly you can have a look at this cheat sheet and practice your skills at Textism.com They provide a tool that turns Textile - the markup language our wikis use - into HTML for preview.

Please, use the preview option to check your edits before you save unless you are 120% sure that you never make mistakes.

C++ code will be automatically highlighted on wiki pages!

كيف تترجم صفحة

إن أردت ترجمة صفحة من الموسوعة خذ بعين الاعتبار إمكانية الوصول إلى اللغات السابقة من خلالها. وعملية الترجمة غاية في السهولة كل ما عليك هو تمديد شريط التصفح بأعلى هذه الصفحة. ويجب أن يراعي التصفح النموذج التالي: لغة الصفحة لغة1 لغة2 .. جنبا إلى جنب وبالروابط الموافقة. على سبيل المثال في هذه الصفحة (أزل الفراغات بين أقواس المربع "[[")

'''English''' [ [WikiHilfe|Deutsch]] [ [WikiPomoc|Polski]]

التعاون

Wikis are meant for collaborative editing. To make it as easy as possible for everybody please follow some basic rules.

  • Discuss your pages in the "Wiki forum":/forums/viewforum/16/
  • Write in an understandable, informative, but not too formal language.
  • Structure your pages with subheadings and a healthy amount of paragraphs for easier understanding and better reading.
  • Explain acronyms, at least at first use.
  • Use meaningful but straight to the point page names.
  • Don't mindlessly throw away other people's work.
  • Use Tagging to group pages by topic.

إضائة النصوص البرمجية

ستجد في شريط الأدوات مؤشرة وهي ذات الرمز الفاصل بين اسم اي بريد الكتروني ومجاله ,يؤدي وضع النص البرمجي بين اشارتين إلى جعله ملونا كما يلي:

#include <QtGui>
#include "window.h"

int main(int argv, char **args)
 {
 QApplication app(argv, args);

Window window;
 window.show();

return app.exec();
}

Qt classes are of course supported.

صفحات الأصناف

Whenever you create a new category for your page the wiki software will create a landing page for it. This page is editable just like any other page. Just click on the link displayed on your page and edit away. All pages within the respective category will be displayed on this page. Why not start it with an introduction to the topic?

Need help?

Please, take a look at the "help forum":/forums/viewforum/4/ or our "FAQ (Qt DN FAQ)":/static/devnet_faq/.